Skip to content

Commit

Permalink
Version 6.0.0 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro authored Sep 5, 2022
1 parent 84bbec0 commit 5810ae4
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 19 deletions.
20 changes: 15 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
### Next

- [Breaking] Bump minimum Rust version to 1.56.0
- [Misc] Bump `clap` to 3.0.0
- [Misc] Bump `zopfli` to 0.5.0
### Version 6.0.0

- [Breaking] Bump minimum Rust version to 1.57.0
- [Feature] Add `--check`/`-c` CLI option
- [Security] Update stderrlog to 0.5.2 (Fixes RUSTSEC-2022-0006)
- [Security] Remove chrono as a transitive dependency (Fixes )
- [Misc] Bump `clap` to 3.2
- [Misc] Bump `zopfli` to 0.7
- [Misc] Bump `libdeflater` to 0.10
- [Misc] Remove `byteorder` dependency in favor of stdlib functions
- [Misc] Bump `image` to 0.24
- [Misc] Bump `crc` to 3.0
- [Misc] Bump `miniz_oxide` to 0.6
- [Misc] Update to Rust edition 2021
- [Misc] Various internal improvements

### Version 5.0.1

Expand Down
27 changes: 18 additions & 9 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ homepage = "https://github.com/shssoichiro/oxipng"
license = "MIT"
name = "oxipng"
repository = "https://github.com/shssoichiro/oxipng"
version = "5.0.1"
rust-version = "1.56.0"
version = "6.0.0"
rust-version = "1.57.0"

[badges]
travis-ci = { repository = "shssoichiro/oxipng", branch = "master" }
Expand All @@ -27,7 +27,7 @@ bit-vec = "0.6.3"
crc = "3.0.0"
itertools = "0.10.3"
zopfli = { version = "0.7.0", optional = true }
miniz_oxide = "0.5.3"
miniz_oxide = "0.6.2"
rgb = "0.8.33"
indexmap = "1.9.1"
libdeflater = { version = "0.10.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cargo build --release
cp target/release/oxipng /usr/local/bin
```

The current minimum supported Rust version is **1.56.0**.
The current minimum supported Rust version is **1.57.0**.

Oxipng follows Semantic Versioning.

Expand Down
2 changes: 1 addition & 1 deletion README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cargo build --release
cp target/release/oxipng /usr/local/bin
```

The current minimum supported Rust version is **1.56.0**.
The current minimum supported Rust version is **1.57.0**.

Oxipng follows Semantic Versioning.

Expand Down

0 comments on commit 5810ae4

Please sign in to comment.