Version 4.0.1
Some checks failed
deploy / create-windows-binaries (i686) (push) Has been cancelled
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled

This commit is contained in:
Josh Holmer 2020-11-18 16:47:28 -05:00
parent 77fbebf893
commit 4fb262c477
3 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
### Version 4.0.1
- Includes an update to libdeflater that improves support for targets
without a C stdlib, like wasm32.
### Version 4.0.0
- [Breaking] Bump minimum Rust version to 1.45.0
- [Feature] Make `libdeflater` and `zopfli` optional for API users

10
Cargo.lock generated
View file

@ -248,9 +248,9 @@ dependencies = [
[[package]]
name = "image"
version = "0.23.11"
version = "0.23.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4f0a8345b33b082aedec2f4d7d4a926b845cee184cbe78b703413066564431b"
checksum = "7ce04077ead78e39ae8610ad26216aed811996b043d47beed5090db674f9e9b5"
dependencies = [
"bytemuck",
"byteorder",
@ -401,7 +401,7 @@ dependencies = [
[[package]]
name = "oxipng"
version = "4.0.0"
version = "4.0.1"
dependencies = [
"bit-vec",
"byteorder",
@ -532,9 +532,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "termcolor"
version = "1.1.0"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
checksum = "bf11676eb135389f21fcda654382c4859bbfc1d2f36e4425a2f829bb41b1e20e"
dependencies = [
"winapi-util",
]

View file

@ -16,7 +16,7 @@ license = "MIT"
name = "oxipng"
repository = "https://github.com/shssoichiro/oxipng"
build = "build.rs"
version = "4.0.0"
version = "4.0.1"
[badges]
travis-ci = { repository = "shssoichiro/oxipng", branch = "master" }