Skip to content

Commit

Permalink
chore: release v0.35.0 (#558)
Browse files Browse the repository at this point in the history
* chore: release v0.35.0

* add publish script
  • Loading branch information
lwshang authored May 10, 2024
1 parent 70c3daf commit 8273d32
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.35.0] - 2024-05-10

* Added a limit to the concurrent requests an agent will make at once. This should make server-side ratelimiting much rarer to encounter, even when sending a high volume of requests (for example, a large `ic_utils::ManagementCanister::install` call).
* The agent will now automatically retry 429 Too Many Requests responses after a short delay.
* BREAKING: Changed Chunk Store API to conform to the interface specification:
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.34.0"
version = "0.35.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
Expand All @@ -22,9 +22,9 @@ rust-version = "1.70.0"
license = "Apache-2.0"

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

ic-certification = "2.2"
candid = "0.10.1"
Expand Down
7 changes: 7 additions & 0 deletions scripts/cargo_publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
cargo publish -p ic-transport-types
cargo publish -p ic-agent
cargo publish -p ic-identity-hsm
cargo publish -p ic-utils
cargo publish -p icx
cargo publish -p icx-cert

0 comments on commit 8273d32

Please sign in to comment.