Skip to content

Commit

Permalink
prepare v0.17.0-beta.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Jun 4, 2024
1 parent 88714ee commit 336eb8b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

## v0.17.0-beta.1 -- 2024-06-04

### Highlights

* revised custom HTTP request function `oneio::get_http_reader` to allow specifying custom `request::blocking::Client`
for any request customizations to allow specifying custom `request::blocking::Client` for any request customizations.

### Breaking changes

1. rename `oneio::get_remote_reader` to `oneio::get_http_reader`
2. rename `get_remote_ftp_raw` to `get_ftp_reader_raw`
3. change signatures of `oneio::download`, `oneio::download_with_retry`, `oneio::get_http_reader`'s optional HashMap
parameter for headers to optional `reqwest::blocking::Client`.

## v0.16.8 -- 2024-05-22

### Highlights
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oneio"
version = "0.16.8"
version = "0.17.0-beta.1"
authors = ["Mingwei Zhang <[email protected]>"]
edition = "2021"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ different sources and compressions.
Enable all compression algorithms and handle remote files (default)

```toml
oneio = "0.16"
oneio = "0.17.0-beta"
```

Select from supported feature flags

```toml
oneio = { version = "0.16", default-features = false, features = ["remote", "gz"] }
oneio = { version = "0.17.0-beta", default-features = false, features = ["remote", "gz"] }
```

Default flags include `lib-core` and `rustls`.
Expand Down

0 comments on commit 336eb8b

Please sign in to comment.