Version 2.0.1

This commit is contained in:
Josh Holmer 2018-07-21 00:40:48 -04:00
parent ff0e3df948
commit b948264c32
3 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
### Version 2.0.1
- Revert making Cloudflare zlib the default, as it introduced a major memory leak. It will be put back behind a feature flag, and reenabled when the issue is fixed.
### Version 2.0.0 ### Version 2.0.0
- [SEMVER_MAJOR] Make PngError a proper Error enum - [SEMVER_MAJOR] Make PngError a proper Error enum
- [SEMVER_MINOR] Bump minimum Rust version to 1.27.0 - [SEMVER_MINOR] Bump minimum Rust version to 1.27.0

2
Cargo.lock generated
View file

@ -265,7 +265,7 @@ dependencies = [
[[package]] [[package]]
name = "oxipng" name = "oxipng"
version = "2.0.0" version = "2.0.1"
dependencies = [ dependencies = [
"bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -14,7 +14,7 @@ homepage = "https://github.com/shssoichiro/oxipng"
license = "MIT" license = "MIT"
name = "oxipng" name = "oxipng"
repository = "https://github.com/shssoichiro/oxipng" repository = "https://github.com/shssoichiro/oxipng"
version = "2.0.0" version = "2.0.1"
[badges] [badges]
travis-ci = { repository = "shssoichiro/oxipng", branch = "master" } travis-ci = { repository = "shssoichiro/oxipng", branch = "master" }