Skip to content

Commit 58cf901

Browse files
committed
bump version and update changelog and readme
1 parent b212371 commit 58cf901

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
---
6+
## [0.8.0](https://github.com/Frommi/miniz_oxide/compare/0.7.4..0.8.0) - 2024-08-08
7+
8+
### Major changes
9+
10+
This release changes to using the forked adler2 crate as the original adler crate has not seen any updates in the last 3 years and the repositories have been marked as archived.
11+
The minimum rust version has also been bumped slightly to make room for future improvements.
12+
13+
### Bug Fixes
14+
15+
- **(miniz_oxide)** update edition, make more functions const, fix warning, update to adler2 - ([b212371](https://github.com/Frommi/miniz_oxide/commit/b2123715e2f10f29548b3124b2ea0ce91aad8c27)) - oyvindln
16+
517
---
618
## [0.7.4](https://github.com/Frommi/miniz_oxide/compare/0.7.3..0.7.4) - 2024-06-18
719

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ name = "miniz_oxide_c_api"
2525
cc = "1.0.83"
2626
libc = "0.2.22"
2727
crc32fast = "1.2.0"
28-
miniz_oxide = { path = "miniz_oxide", version = "0.7.3" }
28+
miniz_oxide = { path = "miniz_oxide", version = "0.8.0" }
2929

3030
[build-dependencies]
3131
cc = "1.0"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ Pure rust replacement for the [miniz](https://github.com/richgel999/miniz) defla
88
This project is organized into a C API shell and a rust crate.
99
The Rust crate is found in the [miniz_oxide subdirectory](https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide).
1010

11+
miniz_oxide 0.8.x currently requires at least Rust 1.56.0, though to leave some room for future internal improvements the minimum version might be raised in the future though it never be made incompatible with anything more recent than the last 4 rust versions and in all likelyhood not require anything even remotely that recent unless there is a very good reason for it.
12+
1113
miniz_oxide 0.7.x requires at least Rust 1.50.0
12-
Older versions 0.5.x and 0.6.x require at least rust 1.40.0, 0.3.x requires at least rust 0.36.0.
1314

1415
For a friendlier streaming API using readers and writers, [flate2](https://crates.io/crates/flate2) can be used, which can use miniz_oxide as a rust-only back-end.
1516

miniz_oxide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "miniz_oxide"
33
authors = ["Frommi <daniil.liferenko@gmail.com>", "oyvindln <oyvindln@users.noreply.github.com>"]
4-
version = "0.7.4"
4+
version = "0.8.0"
55
license = "MIT OR Zlib OR Apache-2.0"
66
readme = "Readme.md"
77
keywords = ["zlib", "miniz", "deflate", "encoding"]

0 commit comments

Comments
 (0)