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