Skip to content

Commit

Permalink
release 0.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Mar 20, 2024
1 parent 76b8b02 commit ee0b69e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

## v0.16.4 -- 2024-03-20

### Hot fix

* add `http2` and `charset` feature flag to `reqwest`
* the feature flags for `reqwest` has changed a lot between `0.11` and `0.12` and the `http2` and `charset` features are necessary now

## v0.16.3 -- 2024-03-20

* switch `flate2` to `rust-backend` default feature as the `zlib-ng` feature requires `cmake` to build and offers no
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oneio"
version = "0.16.3"
version = "0.16.4"
authors = ["Mingwei Zhang <mingwei@bgpkit.com>"]
edition = "2021"
readme = "README.md"
Expand All @@ -21,7 +21,7 @@ required-features = ["cli"]

[dependencies]
# remote
reqwest = { version = "0.12", default-features = false, features = ["blocking"], optional = true }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "http2", "charset"], optional = true }

# compression
flate2 = { version = "1", optional = true }
Expand Down

0 comments on commit ee0b69e

Please sign in to comment.