Skip to content

Commit

Permalink
chore: release rust agent 0.13.0 (#320)
Browse files Browse the repository at this point in the history
There were breaking changes since 0.12.1
  • Loading branch information
ericswanson-dfinity authored Mar 8, 2022
1 parent 8189800 commit 49ee091
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.2] - 2022-03-07
## [0.13.0] - 2022-03-07
Secp256k1 identity now checks if a curve actually uses the secp256k1 parameters. It cannot be used to load non-secp256k1 identities anymore.

Data type of `cycles` changed to `u128` (was `u64`).
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
description = "Library for storing files in an asset canister."
Expand All @@ -20,9 +20,9 @@ futures = "0.3.19"
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.12", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.13", features = [ "pem" ] }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.12" }
ic-utils = { path = "../ic-utils", version = "0.13" }
mime = "0.3.16"
mime_guess = "2.0.3"
openssl = "0.10.38"
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.12.2"
version = "0.13.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 @@ -14,7 +14,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]

[dependencies]
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.12", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.13", features = [ "pem" ] }
num-bigint = "0.4.3"
openssl = "0.10.38"
pkcs11 = "0.5.0"
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
description = "Collection of utilities for Rust, on top of ic-agent, to communicate with the Internet Computer, following the Public Specification."
Expand All @@ -18,7 +18,7 @@ include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
async-trait = "0.1.40"
candid = "0.7.12"
garcon = { version = "0.2", features = ["async"] }
ic-agent = { path = "../ic-agent", version = "0.12" }
ic-agent = { path = "../ic-agent", version = "0.13" }
serde = "1.0.115"
serde_bytes = "0.11"
strum = "0.23"
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
description = "CLI tool to manage assets on an asset canister on the Internet Computer."
Expand All @@ -22,10 +22,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.12" }
ic-asset = { path = "../ic-asset", version = "0.12" }
ic-agent = { path = "../ic-agent", version = "0.13" }
ic-asset = { path = "../ic-asset", version = "0.13" }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.12" }
ic-utils = { path = "../ic-utils", version = "0.13" }
libflate = "1.1.1"
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
description = "CLI tool to download a document from the Internet Computer and pretty-print the contents of its IC-Certificate header."
Expand All @@ -20,7 +20,7 @@ base64 = "0.13"
clap = { version = "3.0.14", features = ["derive", "cargo"] }
chrono = "0.4.19"
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.12" }
ic-agent = { path = "../ic-agent", version = "0.13" }
leb128 = "0.2.4"
reqwest = { version = "0.11", features = [ "blocking", "rustls-tls" ] }
sha2 = "0.10.1"
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.12.2"
version = "0.13.0"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
description = "CLI tool to call canisters on the Internet Computer."
Expand All @@ -23,8 +23,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.12" }
ic-utils = { path = "../ic-utils", version = "0.12" }
ic-agent = { path = "../ic-agent", version = "0.13" }
ic-utils = { path = "../ic-utils", version = "0.13" }
pem = "1.0"
ring = "0.16.11"
serde = "1.0.115"
Expand Down

0 comments on commit 49ee091

Please sign in to comment.