Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

### chore: bump `ic-agent`, `ic-utils` and `ic-identity-hsm` to 0.47.0

### fix: correct `dfx sns` example commands in documentation

Fixed incorrect commands `dfx sns config create` and `dfx sns config validate` in the `dfx sns` CLI reference examples. The correct commands are `dfx sns create` and `dfx sns validate`.
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ future_not_send = "warn"
candid = "0.10.18"
candid_parser = "0.3.0"
dfx-core = { path = "src/dfx-core", version = "0.3.0" }
ic-agent = "0.46.0"
ic-asset = { path = "src/canisters/frontend/ic-asset", version = "0.28.1" }
ic-agent = "0.47.0"
ic-asset = { path = "src/canisters/frontend/ic-asset", version = "0.29.0" }
ic-cdk = "0.19.0-beta.2"
ic-identity-hsm = "0.46.0"
ic-utils = "0.46.0"
ic-identity-hsm = "0.47.0"
ic-utils = "0.47.0"
ic-management-canister-types = "0.7.1"

aes-gcm = { version = "0.10.3", features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion src/canisters/frontend/ic-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-asset"
version = "0.28.1" # sync with icx-asset
version = "0.29.0" # sync with icx-asset
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion src/canisters/frontend/icx-asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icx-asset"
version = "0.28.1" # sync with ic-asset
version = "0.29.0" # sync with ic-asset
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
Loading