-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release rust agent 0.20.0 (#364)
* chore(breaking change): bump `ic-types` (`0.3.0`->`0.4.0`) and `candid` (`0.7.14`->`0.7.15`) * feat(ic-asset): support for custom HTTP headers asset canister configuration in ic-assets #359 * feat(ic-asset): configurable dot-directories and -files inclusion #361 Co-authored-by: Linwei Shang <[email protected]>
- Loading branch information
Showing
9 changed files
with
41 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-agent" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2021" | ||
description = "Agent library to communicate with the Internet Computer, following the Public Specification." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-asset" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2021" | ||
description = "Library for storing files in an asset canister." | ||
|
@@ -23,8 +23,8 @@ futures-intrusive = "0.4.0" | |
garcon = { version = "0.2", features = ["async"] } | ||
globset = "0.4.9" | ||
hex = {version = "0.4.2", features = ["serde"] } | ||
ic-agent = { path = "../ic-agent", version = "0.19", features = [ "pem" ] } | ||
ic-utils = { path = "../ic-utils", version = "0.19" } | ||
ic-agent = { path = "../ic-agent", version = "0.20", features = [ "pem" ] } | ||
ic-utils = { path = "../ic-utils", version = "0.20" } | ||
mime = "0.3.16" | ||
mime_guess = "2.0.4" | ||
pathdiff = "0.2.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-identity-hsm" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
description = "Identity implementation for HSM for the ic-agent package." | ||
homepage = "https://docs.rs/ic-identity-hsm" | ||
|
@@ -16,7 +16,7 @@ rust-version = "1.58.1" | |
|
||
[dependencies] | ||
hex = "0.4.2" | ||
ic-agent = { path = "../ic-agent", version = "0.19", features = [ "pem" ] } | ||
ic-agent = { path = "../ic-agent", version = "0.20", features = [ "pem" ] } | ||
num-bigint = "0.4.3" | ||
pkcs11 = "0.5.0" | ||
sha2 = "0.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ic-utils" | ||
version = "0.19.0" | ||
version = "0.20.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." | ||
|
@@ -20,7 +20,7 @@ rust-version = "1.58.1" | |
async-trait = "0.1.40" | ||
candid = "0.7.15" | ||
garcon = { version = "0.2", features = ["async"] } | ||
ic-agent = { path = "../ic-agent", version = "0.19" } | ||
ic-agent = { path = "../ic-agent", version = "0.20" } | ||
serde = "1.0.115" | ||
serde_bytes = "0.11" | ||
strum = "0.24" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "icx-asset" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2021" | ||
description = "CLI tool to manage assets on an asset canister on the Internet Computer." | ||
|
@@ -24,9 +24,9 @@ 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.19" } | ||
ic-asset = { path = "../ic-asset", version = "0.19" } | ||
ic-utils = { path = "../ic-utils", version = "0.19" } | ||
ic-agent = { path = "../ic-agent", version = "0.20" } | ||
ic-asset = { path = "../ic-asset", version = "0.20" } | ||
ic-utils = { path = "../ic-utils", version = "0.20" } | ||
libflate = "1.2.0" | ||
num-traits = "0.2" | ||
pem = "1.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "icx-cert" | ||
version = "0.19.0" | ||
version = "0.20.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." | ||
|
@@ -22,7 +22,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.19" } | ||
ic-agent = { path = "../ic-agent", version = "0.20" } | ||
leb128 = "0.2.4" | ||
reqwest = { version = "0.11", features = [ "blocking", "rustls-tls" ] } | ||
sha2 = "0.10" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "icx" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["DFINITY Stiftung <[email protected]>"] | ||
edition = "2021" | ||
description = "CLI tool to call canisters on the Internet Computer." | ||
|
@@ -25,8 +25,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.19" } | ||
ic-utils = { path = "../ic-utils", version = "0.19" } | ||
ic-agent = { path = "../ic-agent", version = "0.20" } | ||
ic-utils = { path = "../ic-utils", version = "0.20" } | ||
pem = "1.0" | ||
ring = "0.16.11" | ||
serde = "1.0.115" | ||
|