Skip to content

Commit

Permalink
Release version 0.27.0 (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity authored Aug 30, 2023
1 parent 65e0900 commit eaba57b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 25 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## Unreleased

## [0.27.0] - 2023-08-30

* Breaking change: Remove argument builder form `ic-utils`. `CallBuilder::with_arg` sets a single argument, instead of pushing a new argument to the list. This function can be called at most once. If it's called multiple times, it panics. If you have multiple arguments, use `CallBuilder::with_args((arg1, arg2))` or `CallBuilder::set_raw_arg(candid::Encode!(arg1, arg2)?)`.
* feat: Added `public_key`, `sign_arbitrary`, `sign_delegation` functions to `Identity`.
Expand Down
31 changes: 12 additions & 19 deletions Cargo.lock

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

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

[workspace.package]
version = "0.26.1"
version = "0.27.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
repository = "https://github.com/dfinity/agent-rs"
Expand All @@ -21,11 +21,11 @@ rust-version = "1.65.0"
license = "Apache-2.0"

[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.26.1", default-features = false }
ic-utils = { path = "ic-utils", version = "0.26.1" }
ic-certification = { path = "ic-certification", version = "0.26.1" }
ic-agent = { path = "ic-agent", version = "0.27.0", default-features = false }
ic-utils = { path = "ic-utils", version = "0.27.0" }
ic-certification = { path = "ic-certification", version = "0.27.0" }

candid = "0.9.0"
candid = "0.9.5"
hex = "0.4.3"
ring = "0.16.20"
serde = "1.0.162"
Expand Down

0 comments on commit eaba57b

Please sign in to comment.