From c7bbdeadc11c59c2b254f590b383673a39943da1 Mon Sep 17 00:00:00 2001 From: Evan Sharp Date: Mon, 27 Jan 2020 11:17:16 -0500 Subject: [PATCH] chore(release): adding 8.4.1 (#1770) --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- scripts/release | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0aaf6321..425d92042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [8.4.1](https://github.com/reactstrap/reactstrap/compare/8.4.0...8.4.1) (2020-01-27) + + +### Bug Fixes + +* **Modal:** Allow esc to close static backdrop modal when keybo… ([#1767](https://github.com/reactstrap/reactstrap/issues/1767)) ([49da7b5](https://github.com/reactstrap/reactstrap/commit/49da7b5)), closes [#1766](https://github.com/reactstrap/reactstrap/issues/1766) +* **Tooltip,Popover:** account for shadowDOM target ([#1769](https://github.com/reactstrap/reactstrap/issues/1769)) ([10ccf12](https://github.com/reactstrap/reactstrap/commit/10ccf12)), closes [#1691](https://github.com/reactstrap/reactstrap/issues/1691) + + + # [8.4.0](https://github.com/reactstrap/reactstrap/compare/8.3.2...8.4.0) (2020-01-17) diff --git a/package.json b/package.json index b3875c6f7..42e68d681 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reactstrap", - "version": "8.4.0", + "version": "8.4.1", "description": "React Bootstrap 4 components", "main": "lib/index.js", "jsnext:main": "es/index.js", diff --git a/scripts/release b/scripts/release index d04bbd937..9174197d2 100755 --- a/scripts/release +++ b/scripts/release @@ -13,11 +13,11 @@ fi CURRENT_BRANCH="$(git symbolic-ref --short -q HEAD)" success() { - echo -e "\033[32;1m$1" + echo -e "\033[32;1m$1\033[0m" } error() { - echo -e "\033[31;1m$1" + echo -e "\033[31;1m$1 \033[0m" } if [ -z "$GITHUB_TOKEN" ]; then