Skip to content

Commit

Permalink
Release v3.10.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
diasbruno committed Aug 21, 2019
1 parent 8a71f71 commit 7a085c3
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
v3.10.1 - Wed, 21 Aug 2019 20:49:53 UTC
---------------------------------------

- [8a71f71](../../commit/8a71f71) [fixed] onAfterClose prop falsly called on unmount
- [1b80146](../../commit/1b80146) Revert "Merge pull request #766 from reactjs/dependabot/npm_and_yarn/webpack-dev-server-3.1.11"
- [43e2296](../../commit/43e2296) Revert "[chore] run npm audit fix"
- [0b56049](../../commit/0b56049) Revert "[chore] cleanup readme"
- [a428d83](../../commit/a428d83) [chore] cleanup readme
- [b0eb17f](../../commit/b0eb17f) [chore] run npm audit fix
- [9a6edf9](../../commit/9a6edf9) Merge pull request #766 from reactjs/dependabot/npm_and_yarn/webpack-dev-server-3.1.11
- [8f4ea54](../../commit/8f4ea54) Bump webpack-dev-server from 2.11.5 to 3.1.11


v3.9.1 - Sun, 14 Jul 2019 16:52:30 UTC
--------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-modal",
"version": "3.9.1",
"version": "3.10.1",
"homepage": "https://github.com/reactjs/react-modal",
"authors": [
"Ryan Florence",
Expand Down
4 changes: 3 additions & 1 deletion dist/react-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2028,7 +2028,9 @@ var ModalPortal = function (_Component) {
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
this.afterClose();
if (this.state.isOpen) {
this.afterClose();
}
clearTimeout(this.closeTimer);
}
}, {
Expand Down
2 changes: 1 addition & 1 deletion dist/react-modal.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-modal",
"version": "3.9.1",
"version": "3.10.1",
"description": "Accessible modal dialog component for React.JS",
"main": "./lib/index.js",
"module": "./lib/index.js",
Expand Down

0 comments on commit 7a085c3

Please sign in to comment.