From c6c5c8009c9f1e820b631a789825f3652654deed Mon Sep 17 00:00:00 2001 From: Ben Wiley Date: Tue, 5 Dec 2017 22:30:03 -0500 Subject: [PATCH] CHANGELOG.md updated, package version now v0.4.0. --- CHANGELOG.md | 7 ++++++- README.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82c0e94..9d28b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.4.0] - 2017-12-05 ### Added - `cumulative` option for computing frames by layering on top of prior frames +### Removed +- `path` import that was no longer being used + ## [0.3.0] - 2017-07-13 ### Added - Unminified and minified [browser bundles](https://github.com/benwiley4000/gif-frames/blob/master/README.md#cdn-scripts) which will expose the library as a global called `gifFrames` - for those not using npm. @@ -64,7 +68,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Accepts optional error callback - Dependencies on `get-pixels` and `save-pixels` -[Unreleased]: https://github.com/benwiley4000/gif-frames/compare/v0.2.4...HEAD +[Unreleased]: https://github.com/benwiley4000/gif-frames/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/benwiley4000/gif-frames/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/benwiley4000/gif-frames/compare/v0.2.4...v0.3.0 [0.2.4]: https://github.com/benwiley4000/gif-frames/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/benwiley4000/gif-frames/compare/v0.2.2...v0.2.3 diff --git a/README.md b/README.md index dce7041..b643372 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ If you're not using npm, you can include one of these in your HTML file: ```html - + - + ``` This will expose `gifFrames` as a global variable. diff --git a/package-lock.json b/package-lock.json index f6ecca3..18d2787 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "gif-frames", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4fe5b95..611e1c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gif-frames", - "version": "0.3.0", + "version": "0.4.0", "description": "Pure JavaScript tool for extracting GIF frames and saving to file", "main": "gif-frames.js", "bundled": "dist/gif-frames.js",