Skip to content

Commit

Permalink
chore: release agent-rs 0.8.0 and friends (#259)
Browse files Browse the repository at this point in the history
icx-cert: 0.3.0 => 0.4.0
ic-asset: 0.2.0 => 0.3.0
icx-proxy: 0.5.0 => 0.6.0
ic-identity-hsm: 0.3.4 => 0.3.5
icx: 0.4.0 => 0.5.0
ic-agent: 0.7.0 => 0.8.0
ic-utils: 0.5.0 => 0.6.0
icx-asset: 0.2.0 => 0.3.0

* also: update to ic-types 0.2.2
  • Loading branch information
ericswanson-dfinity authored Aug 23, 2021
1 parent 260594f commit 9d9fd30
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 33 deletions.
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.

4 changes: 2 additions & 2 deletions ic-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-agent"
version = "0.7.0"
version = "0.8.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Agent library to communicate with the Internet Computer, following the Public Specification."
Expand All @@ -20,7 +20,7 @@ byteorder = "1.3.2"
garcon = { version = "0.2", features = ["async"] }
hex = "0.4.0"
http = "0.2.3"
ic-types = "0.2.1"
ic-types = "0.2.2"
leb128 = "0.2.4"
mime = "0.3.16"
openssl = "0.10.36"
Expand Down
8 changes: 4 additions & 4 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.2.0"
version = "0.3.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "Library for storing files in an asset canister."
Expand All @@ -20,9 +20,9 @@ futures = "0.3.16"
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.7", features = [ "pem" ] }
ic-types = { version = "0.2.1", features = [ "serde" ] }
ic-utils = { path = "../ic-utils", version = "0.5" }
ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] }
ic-types = { version = "0.2.2", features = [ "serde" ] }
ic-utils = { path = "../ic-utils", version = "0.6" }
mime = "0.3.16"
mime_guess = "2.0.3"
openssl = "0.10.32"
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.3.4"
version = "0.3.5"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
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.7", features = [ "pem" ] }
ic-agent = { path = "../ic-agent", version = "0.8", features = [ "pem" ] }
num-bigint = "0.4.0"
openssl = "0.10.30"
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.5.0"
version = "0.6.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
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.4"
garcon = { version = "0.2", features = ["async"] }
ic-agent = { path = "../ic-agent", version = "0.7" }
ic-agent = { path = "../ic-agent", version = "0.8" }
serde = "1.0.115"
serde_bytes = "0.11"
strum = "0.21"
Expand Down
10 changes: 5 additions & 5 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.2.0"
version = "0.3.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to manage assets on an asset canister on the Internet Computer."
Expand All @@ -22,10 +22,10 @@ clap = "3.0.0-beta.2"
delay = "0.3.1"
garcon = "0.2.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.7" }
ic-asset = { path = "../ic-asset", version = "0.2" }
ic-types = "0.2.1"
ic-utils = { path = "../ic-utils", version = "0.5" }
ic-agent = { path = "../ic-agent", version = "0.8" }
ic-asset = { path = "../ic-asset", version = "0.3" }
ic-types = "0.2.2"
ic-utils = { path = "../ic-utils", version = "0.6" }
libflate = "1.1.0"
num-traits = "0.2"
pem = "0.8.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.3.0"
version = "0.4.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
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 = "3.0.0-beta.2"
chrono = "0.4.19"
hex = "0.4.2"
ic-agent = { path = "../ic-agent", version = "0.7" }
ic-agent = { path = "../ic-agent", version = "0.8" }
leb128 = "0.2.4"
reqwest = { version = "0.11",features = [ "blocking", "rustls-tls" ] }
sha2 = "0.9.1"
Expand Down
6 changes: 3 additions & 3 deletions icx-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-proxy"
version = "0.5.0"
version = "0.6.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to create an HTTP proxy to the Internet Computer."
Expand All @@ -23,8 +23,8 @@ garcon = { version = "0.2.3", features = ["async"] }
hex = "0.4.3"
hyper = { version = "0.14.11", features = ["full"] }
hyper-tls = "0.5.0"
ic-agent = { path = "../ic-agent", version = "0.7" }
ic-utils = { path = "../ic-utils", version = "0.5" }
ic-agent = { path = "../ic-agent", version = "0.8" }
ic-utils = { path = "../ic-utils", version = "0.6" }
tokio = { version = "1.8.1", features = ["full"] }
serde = "1.0.115"
serde_json = "1.0.57"
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.4.0"
version = "0.5.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to call canisters on the Internet Computer."
Expand All @@ -23,8 +23,8 @@ clap = "3.0.0-beta.1"
garcon = { version = "0.2.3", features = ["async"] }
hex = "0.4.2"
humantime = "2.0.1"
ic-agent = { path = "../ic-agent", version = "0.7" }
ic-utils = { path = "../ic-utils", version = "0.5" }
ic-agent = { path = "../ic-agent", version = "0.8" }
ic-utils = { path = "../ic-utils", version = "0.6" }
pem = "0.8.1"
ring = "0.16.11"
serde = "1.0.115"
Expand Down

0 comments on commit 9d9fd30

Please sign in to comment.