From 2fa4238326bca63695c98ad9a1616ff73f982e57 Mon Sep 17 00:00:00 2001 From: oyvindln Date: Thu, 21 Jan 2021 19:06:57 +0100 Subject: [PATCH] bump changelog and update version and readme --- Cargo.toml | 2 +- README.md | 2 ++ changelog.md | 7 +++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0f300da..37a1eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deflate" -version = "0.8.6" +version = "0.9.0" edition = "2018" license = "MIT/Apache-2.0" authors = ["oyvindln "] diff --git a/README.md b/README.md index 8156b04..67a75a2 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ Deflate encoding with and without zlib and gzip metadata (zlib dictionaries are This library is now mostly in maintenance mode, focus being on the Rust backend of [flate2](https://crates.io/crates/flate2) instead. +The minimum required rust version is 1.32.0 due to use of library functions for endinaness conversion (unit tests requires a newer version). + # Usage: ## Simple compression function: ``` rust diff --git a/changelog.md b/changelog.md index 39ed4ef..744f90c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,10 @@ + +## 0.9.0 (2021-01-21) + +#### Bug Fixes + +* Use std functions instead of byteorder (bumps minimum version to 1.32.0 ([d217fbd9](d217fbd9)) + ### 0.8.6 (2020-07-06)