Skip to content

Commit

Permalink
chore: Release agent 0.14.0 (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswanson-dfinity authored Mar 17, 2022
1 parent e25b2be commit 00fe152
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 28 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.0] - 2022-03-17

Introduced HttpRequestStreamingCallback to work around https://github.com/dfinity/candid/issues/273.

Response certificate verification will check that the canister id falls within the range of valid canister ids for the subnet.

## [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.

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.13.0"
version = "0.14.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.13.0"
version = "0.14.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.13", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.14", features = [ "pem" ] }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.13" }
ic-utils = { path = "../ic-utils", version = "0.14" }
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.13.0"
version = "0.14.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.13", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.14", 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.13.0"
version = "0.14.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.13" }
ic-agent = { path = "../ic-agent", version = "0.14" }
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.13.0"
version = "0.14.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.13" }
ic-asset = { path = "../ic-asset", version = "0.13" }
ic-agent = { path = "../ic-agent", version = "0.14" }
ic-asset = { path = "../ic-asset", version = "0.14" }
ic-types = "0.3.0"
ic-utils = { path = "../ic-utils", version = "0.13" }
ic-utils = { path = "../ic-utils", version = "0.14" }
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.13.0"
version = "0.14.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.13" }
ic-agent = { path = "../ic-agent", version = "0.14" }
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.13.0"
version = "0.14.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.13" }
ic-utils = { path = "../ic-utils", version = "0.13" }
ic-agent = { path = "../ic-agent", version = "0.14" }
ic-utils = { path = "../ic-utils", version = "0.14" }
pem = "1.0"
ring = "0.16.11"
serde = "1.0.115"
Expand Down
5 changes: 1 addition & 4 deletions icx/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@ use ic_utils::interfaces::management_canister::{
MgmtMethod,
};
use ring::signature::Ed25519KeyPair;
use std::{
collections::VecDeque, convert::TryFrom, io::BufRead, path::PathBuf, process::exit,
str::FromStr,
};
use std::{collections::VecDeque, convert::TryFrom, io::BufRead, path::PathBuf, str::FromStr};

const DEFAULT_IC_GATEWAY: &str = "https://ic0.app";

Expand Down

0 comments on commit 00fe152

Please sign in to comment.