Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
- Feat: `Content-Type` header compressibility checking.
    - First via a check to [jshttp's comprehensive database](https://github.com/jshttp/mime-db/blob/master/db.json), which is compiled to a [perfect hash function](https://github.com/rust-phf/rust-phf) at build time.
    - Falls back to a `Regex` check, which is customizable.
  • Loading branch information
Fishrock123 committed Jun 17, 2022
1 parent aacdd98 commit 2d9c6d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tide-compress"
version = "0.9.0"
version = "0.10.0"
authors = ["Jeremiah Senkpiel <[email protected]>"]
edition = "2018"
license = "BlueOak-1.0.0"
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2022-06-17

- Feat: `Content-Type` header compressibility checking.
- First via a check to [jshttp's comprehensive database](https://github.com/jshttp/mime-db/blob/master/db.json), which is compiled to a [perfect hash function](https://github.com/rust-phf/rust-phf) at build time.
- Falls back to a `Regex` check, which is customizable.
Expand Down

0 comments on commit 2d9c6d9

Please sign in to comment.