Skip to content

Commit

Permalink
chore: fix docsrs which used removed feature hyper (#597)
Browse files Browse the repository at this point in the history
* chore: fix docsrs which used removed feature hyper

* release v0.38.1

* changelog
  • Loading branch information
lwshang committed Sep 23, 2024
1 parent 7293988 commit dfd5fc3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.38.1] - 2024-09-23

* Fix `ic-agent` manifest so that documentation can be built for docs.rs.

## [0.38.0] - 2024-09-20

* Breaking: Removed `Transport` and the `hyper` and `reqwest` features. `ReqwestTransport` is now the default and `HyperTransport` has been removed. Existing `ReqwestTransport` functions have been moved to `AgentBuilder`.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
]

[workspace.package]
version = "0.38.0"
version = "0.38.1"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
Expand All @@ -22,9 +22,9 @@ rust-version = "1.75.0"
license = "Apache-2.0"

[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.38.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.38.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.38.0" }
ic-agent = { path = "ic-agent", version = "0.38.1", default-features = false }
ic-utils = { path = "ic-utils", version = "0.38.1" }
ic-transport-types = { path = "ic-transport-types", version = "0.38.1" }

ic-certification = "2.2"
candid = "0.10.1"
Expand Down
1 change: 0 additions & 1 deletion ic-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,3 @@ wasm-bindgen = [
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
rustdoc-args = ["--cfg=docsrs"]
features = ["hyper"]

0 comments on commit dfd5fc3

Please sign in to comment.