From d7a1d651ae3f70904577492a2ab1dbd03a62b443 Mon Sep 17 00:00:00 2001 From: oyvindln Date: Wed, 10 Nov 2021 18:01:10 +0100 Subject: [PATCH] bump version, update changelog, readme update --- .gitattributes | 1 + Cargo.toml | 5 +---- README.md | 2 ++ changelog.md | 10 ++++++++++ 4 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1d5e7b4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +tests/*.txt binary diff --git a/Cargo.toml b/Cargo.toml index 788c406..ee227b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deflate" -version = "0.9.1" +version = "1.0.0" edition = "2018" license = "MIT/Apache-2.0" authors = ["oyvindln "] @@ -30,8 +30,5 @@ miniz_oxide = "0.5.0" benchmarks = [] gzip = ["gzip-header"] -[badges] -travis-ci = { repository = "image-rs/deflate-rs", branch = "dev" } - [package.metadata.docs.rs] features = ["gzip"] diff --git a/README.md b/README.md index 6cfb130..063e3bb 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ An implementation of a [DEFLATE](http://www.gzip.org/zlib/rfc-deflate.html) enco Deflate encoding with and without zlib and gzip metadata (zlib dictionaries are not supported) is supported. No unsafe code is used. +Encoding in gzip format requires enabling the 'gzip' feature. + 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). diff --git a/changelog.md b/changelog.md index b8357fe..8bab351 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,13 @@ + +## 1.0.0 (2021-11-10) + +* This release does not add any new features or change the API, only some minor refactor and doc fixes. It's mainly for indicating crate stability. + +#### Bug Fixes + +* fix warnings from rustc and clippy, update dependencies ([a5fcb05e](https://github.com/image-rs/deflate-rs/commit/a5fcb05e74cf6529ebb98b46701f666f1039c5e3)) +* Fix test data location and capitalize Rust, update various links, see pr #53 (thanks @atouchet) ([34fecd18](https://github.com/image-rs/deflate-rs/commit/34fecd18cafaf40ea71abfdcbf054db90e7ce5fa)) + ### 0.9.1 (2021-03-24)