diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe4b02..96e5bda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### v1.2.0 (2017-01-12): + +This is a minor version bump due to the `velocity-animate` dependency getting a minor version +bump to 1.4 that may contain timing changes. See `velocity-animate` changes here: + +https://github.com/julianshapiro/velocity/compare/1.3.0...1.4.0 + +Thanks to @matthewjf for helping track this down as an issue with how Velocity before 1.4 +fired `complete` callbacks on multiple elements animating. + +#### Bug fixes: + * Check for presence of `navigator` before using it to determine if we’re running + in a browser. (Thanks, @alampros!) + * Fix undefined `forEach` method call when doing recursive cache-cleaning without + jQuery. (Thanks, @kennygwang!) + ### v1.1.11 (2016-10-20): Bump `velocity-animate` to v1.3.1 once more now that it's published to npm! diff --git a/README.md b/README.md index 46dd450..f0db30d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ details about why and how we built this. See the [live demo](http://twitter-fabric.github.io/velocity-react/). -**Latest version:** v1.1.11 bumps `velocity-animate` to 1.3.1 +**Latest version:** v1.2.0 fixes some bugs and updates `velocity-animate` to 1.4.0 *Note: v1.1.0 and later require React 0.14.* diff --git a/package.json b/package.json index 355a655..6a7f732 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "velocity-react", - "version": "1.1.11", + "version": "1.2.0", "description": "React components to wrap Velocity animations", "main": "index.js", "scripts": { @@ -24,7 +24,7 @@ "dependencies": { "lodash": "^3.10.1", "react-addons-transition-group": "^0.14.0 || ^15.0.0", - "velocity-animate": "^1.3.1" + "velocity-animate": "^1.4.0" }, "peerDependencies": { "react": "^0.14.0 || ^15.0.0",