Skip to content

Commit

Permalink
CHANGELOG.md updated, package version now v0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
benwiley4000 committed Dec 6, 2017
1 parent 3fdfe3f commit c6c5c80
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ If you're not using npm, you can include one of these in your HTML file:

```html
<!-- unminified -->
<script src="https://unpkg.com/gif-frames@0.3.0?main=bundled"></script>
<script src="https://unpkg.com/gif-frames@0.4.0?main=bundled"></script>

<!-- minified -->
<script src="https://unpkg.com/gif-frames@0.3.0?main=bundled-min"></script>
<script src="https://unpkg.com/gif-frames@0.4.0?main=bundled-min"></script>
```

This will expose `gifFrames` as a global variable.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit c6c5c80

Please sign in to comment.