Skip to content

Commit 5810ae4

Browse files
authored
Version 6.0.0 (#448)
1 parent 84bbec0 commit 5810ae4

File tree

5 files changed

+38
-19
lines changed

5 files changed

+38
-19
lines changed

CHANGELOG.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
### Next
2-
3-
- [Breaking] Bump minimum Rust version to 1.56.0
4-
- [Misc] Bump `clap` to 3.0.0
5-
- [Misc] Bump `zopfli` to 0.5.0
1+
### Version 6.0.0
2+
3+
- [Breaking] Bump minimum Rust version to 1.57.0
4+
- [Feature] Add `--check`/`-c` CLI option
5+
- [Security] Update stderrlog to 0.5.2 (Fixes RUSTSEC-2022-0006)
6+
- [Security] Remove chrono as a transitive dependency (Fixes )
7+
- [Misc] Bump `clap` to 3.2
8+
- [Misc] Bump `zopfli` to 0.7
9+
- [Misc] Bump `libdeflater` to 0.10
10+
- [Misc] Remove `byteorder` dependency in favor of stdlib functions
11+
- [Misc] Bump `image` to 0.24
12+
- [Misc] Bump `crc` to 3.0
13+
- [Misc] Bump `miniz_oxide` to 0.6
14+
- [Misc] Update to Rust edition 2021
15+
- [Misc] Various internal improvements
616

717
### Version 5.0.1
818

Cargo.lock

+18-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ homepage = "https://github.com/shssoichiro/oxipng"
99
license = "MIT"
1010
name = "oxipng"
1111
repository = "https://github.com/shssoichiro/oxipng"
12-
version = "5.0.1"
13-
rust-version = "1.56.0"
12+
version = "6.0.0"
13+
rust-version = "1.57.0"
1414

1515
[badges]
1616
travis-ci = { repository = "shssoichiro/oxipng", branch = "master" }
@@ -27,7 +27,7 @@ bit-vec = "0.6.3"
2727
crc = "3.0.0"
2828
itertools = "0.10.3"
2929
zopfli = { version = "0.7.0", optional = true }
30-
miniz_oxide = "0.5.3"
30+
miniz_oxide = "0.6.2"
3131
rgb = "0.8.33"
3232
indexmap = "1.9.1"
3333
libdeflater = { version = "0.10.0", optional = true }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cargo build --release
3232
cp target/release/oxipng /usr/local/bin
3333
```
3434

35-
The current minimum supported Rust version is **1.56.0**.
35+
The current minimum supported Rust version is **1.57.0**.
3636

3737
Oxipng follows Semantic Versioning.
3838

README.template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cargo build --release
3232
cp target/release/oxipng /usr/local/bin
3333
```
3434

35-
The current minimum supported Rust version is **1.56.0**.
35+
The current minimum supported Rust version is **1.57.0**.
3636

3737
Oxipng follows Semantic Versioning.
3838

0 commit comments

Comments
 (0)