diff --git a/CHANGELOG.md b/CHANGELOG.md index 4abbdb9..4f69779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [2.0.0] - 2016-09-26 +## [2.0.1] - 2016-09-26 +### Fixed +- `package.json` was misconfigured and didn't include the correct files + +## [2.0.0] - 2016-09-26 [YANKED] ### Added - `frame-throttle.d.ts` - a [TypeScript declaration file] for `frame-throttle.js` ### Changed @@ -48,5 +52,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). [TypeScript]: http://www.typescriptlang.org [TypeScript declaration file]: https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html +[2.0.1]: https://github.com/pelotoncycle/frame-throttle/compare/v1.1.0...v2.0.1 [2.0.0]: https://github.com/pelotoncycle/frame-throttle/compare/v1.1.0...v2.0.0 [1.1.0]: https://github.com/pelotoncycle/frame-throttle/compare/v1.0.0...v1.1.0 diff --git a/package.json b/package.json index 888e3dc..3b07458 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "frame-throttle", - "version": "2.0.0", + "version": "2.0.1", "description": "A lightweight way to throttle events and callbacks using requestAnimationFrame", "main": "dist/frame-throttle.js", "types": "dist/frame-throttle.d.ts",