diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f36a4b..89f10e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.2.0] - 2018-03-30 ### Changed - Updated brotli from [v1.0.3] to [v1.0.4] @@ -253,6 +254,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [1.0.0] - 2015-10-18 +[2.2.0]: https://github.com/MayhemYDG/iltorb/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/MayhemYDG/iltorb/compare/v2.0.9...v2.1.0 [2.0.9]: https://github.com/MayhemYDG/iltorb/compare/v2.0.8...v2.0.9 [2.0.8]: https://github.com/MayhemYDG/iltorb/compare/v2.0.7...v2.0.8 @@ -293,7 +295,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p [1.0.1]: https://github.com/MayhemYDG/iltorb/compare/1.0.0...1.0.1 [1.0.1]: https://github.com/MayhemYDG/iltorb/releases/tag/1.0.0 -[v1.0.4]: https://github.com/google/brotli/releases/tag/v1.0.4 +[v1.0.4]: https://github.com/google/brotli/compare/v1.0.3...c6333e1e79fb62ea088443f192293f964409b04e [v1.0.3]: https://github.com/google/brotli/releases/tag/v1.0.3 [v1.0.2]: https://github.com/google/brotli/releases/tag/v1.0.2 [v1.0.1]: https://github.com/google/brotli/releases/tag/v1.0.1 diff --git a/README.md b/README.md index 7e75f71..3c2547d 100644 --- a/README.md +++ b/README.md @@ -103,9 +103,9 @@ fs.createReadStream('path/to/input') ### brotliEncodeParams The `compress`, `compressSync` and `compressStream` methods may accept an optional `brotliEncodeParams` object to define some or all of brotli's compression parameters: -- [type definition](https://github.com/google/brotli/blob/0f3c84e7458d2ef91a29fdf269e8ad016ae694ba/c/enc/params.h#L30-L42) -- [defaults](https://github.com/google/brotli/blob/0f3c84e7458d2ef91a29fdf269e8ad016ae694ba/c/enc/encode.c#L706-L720) -- [explanations](https://github.com/google/brotli/blob/0f3c84e7458d2ef91a29fdf269e8ad016ae694ba/c/include/brotli/encode.h#L133-L205) +- [type definition](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/enc/params.h#L30-L42) +- [defaults](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/enc/encode.c#L706-L720) +- [explanations](https://github.com/google/brotli/blob/c6333e1e79fb62ea088443f192293f964409b04e/c/include/brotli/encode.h#L133-L205) ```javascript const brotliEncodeParams = { diff --git a/package.json b/package.json index bbc3cfe..ffcd3dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iltorb", - "version": "2.1.0", + "version": "2.2.0", "description": "Brotli compression/decompression with native bindings", "homepage": "https://github.com/MayhemYDG/iltorb", "bugs": "https://github.com/MayhemYDG/iltorb/issues",