Skip to content

Commit

Permalink
bump version, update changelog, readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindln committed Nov 10, 2021
1 parent a5fcb05 commit d7a1d65
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests/*.txt binary
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deflate"
version = "0.9.1"
version = "1.0.0"
edition = "2018"
license = "MIT/Apache-2.0"
authors = ["oyvindln <oyvindln@users.noreply.github.com>"]
Expand Down Expand Up @@ -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"]
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.0.0"></a>
## 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))

<a name="0.9.1"></a>
### 0.9.1 (2021-03-24)

Expand Down

0 comments on commit d7a1d65

Please sign in to comment.