diff --git a/Cargo.lock b/Cargo.lock index f28a9ec9e..6f2b1b3fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,7 +875,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "ic-cdk" -version = "0.13.1" +version = "0.13.2" dependencies = [ "anyhow", "candid", @@ -914,7 +914,7 @@ dependencies = [ [[package]] name = "ic-cdk-macros" -version = "0.9.0" +version = "0.13.2" dependencies = [ "candid", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index ba126f4f0..8c240e513 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ opt-level = 'z' [workspace.dependencies] ic0 = { path = "src/ic0", version = "0.21.1" } -ic-cdk = { path = "src/ic-cdk", version = "0.13.0" } +ic-cdk = { path = "src/ic-cdk", version = "0.13.2"} ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.7.0" } candid = "0.10.4" @@ -34,4 +34,3 @@ serde_bytes = "0.11" sha2 = "0.10" slotmap = "1" syn = "1" - diff --git a/src/ic-cdk-macros/CHANGELOG.md b/src/ic-cdk-macros/CHANGELOG.md index 14fd1a1d7..1393753d8 100644 --- a/src/ic-cdk-macros/CHANGELOG.md +++ b/src/ic-cdk-macros/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.13.2] - 2024-04-08 + +### Changed + +- `ic-cdk-macros` will have the same version as the `ic-cdk`. + ## [0.9.0] - 2024-03-01 ### Fixed diff --git a/src/ic-cdk-macros/Cargo.toml b/src/ic-cdk-macros/Cargo.toml index d56ac4d0d..5b233489b 100644 --- a/src/ic-cdk-macros/Cargo.toml +++ b/src/ic-cdk-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-cdk-macros" -version = "0.9.0" # no need to sync with ic-cdk +version = "0.13.2" # sync with ic-cdk authors.workspace = true edition.workspace = true license.workspace = true diff --git a/src/ic-cdk/CHANGELOG.md b/src/ic-cdk/CHANGELOG.md index 5bc6aa81e..0532d2f13 100644 --- a/src/ic-cdk/CHANGELOG.md +++ b/src/ic-cdk/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.13.2] - 2024-04-08 + ### Added - Management canister methods for interacting with the chunk store. (#461) diff --git a/src/ic-cdk/Cargo.toml b/src/ic-cdk/Cargo.toml index 0e73a24ec..1993d34a3 100644 --- a/src/ic-cdk/Cargo.toml +++ b/src/ic-cdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ic-cdk" -version = "0.13.1" +version = "0.13.2" # sync with ic-cdk-macros authors.workspace = true edition.workspace = true license.workspace = true @@ -27,7 +27,7 @@ ic0.workspace = true # Dependents won't accidentaly upgrading ic-cdk-macros only but not ic-cdk. # ic-cdk-macros is a hidden dependency, re-exported by ic-cdk. # It should not be included by users direcly. -ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.9.0" } +ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.13.2" } serde.workspace = true serde_bytes.workspace = true slotmap = { workspace = true, optional = true }