Skip to content

Commit

Permalink
bump version and update changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindln committed Aug 8, 2024
1 parent b212371 commit 58cf901
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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

---
## [0.8.0](https://github.com/Frommi/miniz_oxide/compare/0.7.4..0.8.0) - 2024-08-08

### Major changes

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.
The minimum rust version has also been bumped slightly to make room for future improvements.

### Bug Fixes

- **(miniz_oxide)** update edition, make more functions const, fix warning, update to adler2 - ([b212371](https://github.com/Frommi/miniz_oxide/commit/b2123715e2f10f29548b3124b2ea0ce91aad8c27)) - oyvindln

---
## [0.7.4](https://github.com/Frommi/miniz_oxide/compare/0.7.3..0.7.4) - 2024-06-18

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ name = "miniz_oxide_c_api"
cc = "1.0.83"
libc = "0.2.22"
crc32fast = "1.2.0"
miniz_oxide = { path = "miniz_oxide", version = "0.7.3" }
miniz_oxide = { path = "miniz_oxide", version = "0.8.0" }

[build-dependencies]
cc = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ Pure rust replacement for the [miniz](https://github.com/richgel999/miniz) defla
This project is organized into a C API shell and a rust crate.
The Rust crate is found in the [miniz_oxide subdirectory](https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide).

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.

miniz_oxide 0.7.x requires at least Rust 1.50.0
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.

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.

Expand Down
2 changes: 1 addition & 1 deletion miniz_oxide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miniz_oxide"
authors = ["Frommi <[email protected]>", "oyvindln <[email protected]>"]
version = "0.7.4"
version = "0.8.0"
license = "MIT OR Zlib OR Apache-2.0"
readme = "Readme.md"
keywords = ["zlib", "miniz", "deflate", "encoding"]
Expand Down

0 comments on commit 58cf901

Please sign in to comment.