Skip to content

Commit

Permalink
Release v0.34.0 (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Mar 18, 2024
1 parent cb763d7 commit 7869e06
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 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.34.0] - 2024-03-18

* Changed `AgentError::ReplicaError` to `CertifiedReject` or `UncertifiedReject`. `CertifiedReject`s went through consensus, and `UncertifiedReject`s did not. If your code uses `ReplicaError`:
* for queries: use `UncertifiedReject` in all cases (for now)
* for updates: use `CertifiedReject` for errors raised after the message successfully reaches the canister, and `UncertifiedReject` otherwise
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"ic-agent",
"icx-cert",
Expand All @@ -10,7 +11,7 @@ members = [
]

[workspace.package]
version = "0.33.0"
version = "0.34.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
Expand All @@ -21,9 +22,9 @@ rust-version = "1.70.0"
license = "Apache-2.0"

[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.33.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.33.0" }
ic-transport-types = { path = "ic-transport-types", version = "0.33.0" }
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-certification = "2.2"
candid = "0.10.1"
Expand Down

0 comments on commit 7869e06

Please sign in to comment.