Skip to content

Commit

Permalink
chore: release agent-rs 0.17.0 (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswanson-dfinity authored May 19, 2022
1 parent 3fbc611 commit d170b0d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 24 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.0] - 2022-05-19

Updated dependencies. Some had breaking changes: k256 0.11, pkcs 0.9, and sec1 0.3.

Fixed a potential panic in secp256k1 signature generation.
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion ic-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-agent"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Agent library to communicate with the Internet Computer, following the Public Specification."
Expand Down
6 changes: 3 additions & 3 deletions ic-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-asset"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Library for storing files in an asset canister."
Expand All @@ -21,9 +21,9 @@ futures = "0.3.21"
futures-intrusive = "0.4.0"
garcon = { version = "0.2", features = ["async"] }
hex = {version = "0.4.2", features = ["serde"] }
ic-agent = { path = "../ic-agent", version = "0.16", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.17", features = [ "pem" ] }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.16" }
ic-utils = { path = "../ic-utils", version = "0.17" }
mime = "0.3.16"
mime_guess = "2.0.4"
serde = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions ic-identity-hsm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-identity-hsm"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
description = "Identity implementation for HSM for the ic-agent package."
homepage = "https://docs.rs/ic-identity-hsm"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.58.1"

[dependencies]
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.16", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.17", features = [ "pem" ] }
num-bigint = "0.4.3"
pkcs11 = "0.5.0"
sha2 = "0.10"
Expand Down
4 changes: 2 additions & 2 deletions ic-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-utils"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification."
Expand All @@ -19,7 +19,7 @@ rust-version = "1.58.1"
async-trait = "0.1.40"
candid = "0.7.14"
garcon = { version = "0.2", features = ["async"] }
ic-agent = { path = "../ic-agent", version = "0.16" }
ic-agent = { path = "../ic-agent", version = "0.17" }
serde = "1.0.115"
serde_bytes = "0.11"
strum = "0.24"
Expand Down
8 changes: 4 additions & 4 deletions icx-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-asset"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "CLI tool to manage assets on an asset canister on the Internet Computer."
Expand All @@ -23,10 +23,10 @@ clap = { version = "3.0.14", features = ["derive", "cargo"] }
delay = "0.3.1"
garcon = "0.2.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.16" }
ic-asset = { path = "../ic-asset", version = "0.16" }
ic-agent = { path = "../ic-agent", version = "0.17" }
ic-asset = { path = "../ic-asset", version = "0.17" }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.16" }
ic-utils = { path = "../ic-utils", version = "0.17" }
libflate = "1.2.0"
num-traits = "0.2"
pem = "1.0.1"
Expand Down
4 changes: 2 additions & 2 deletions icx-cert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-cert"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "CLI tool to download a document from the Internet Computer and pretty-print the contents of its IC-Certificate header."
Expand All @@ -21,7 +21,7 @@ base64 = "0.13"
clap = { version = "3.1.8", features = ["derive", "cargo"] }
chrono = "0.4.19"
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.16" }
ic-agent = { path = "../ic-agent", version = "0.17" }
leb128 = "0.2.4"
reqwest = { version = "0.11", features = [ "blocking", "rustls-tls" ] }
sha2 = "0.10"
Expand Down
6 changes: 3 additions & 3 deletions icx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx"
version = "0.16.0"
version = "0.17.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2021"
description = "CLI tool to call canisters on the Internet Computer."
Expand All @@ -24,8 +24,8 @@ clap = { version = "3.0.14", features = ["derive", "cargo"] }
garcon = { version = "0.2.3", features = ["async"] }
hex = "0.4.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.16" }
ic-utils = { path = "../ic-utils", version = "0.16" }
ic-agent = { path = "../ic-agent", version = "0.17" }
ic-utils = { path = "../ic-utils", version = "0.17" }
pem = "1.0"
ring = "0.16.11"
serde = "1.0.115"
Expand Down

0 comments on commit d170b0d

Please sign in to comment.