Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release ic-cdk v0.13.2 #478

Merged
merged 1 commit into from
Apr 8, 2024
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
4 changes: 2 additions & 2 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -34,4 +34,3 @@ serde_bytes = "0.11"
sha2 = "0.10"
slotmap = "1"
syn = "1"

6 changes: 6 additions & 0 deletions src/ic-cdk-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/ic-cdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/ic-cdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/ic-cdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 }
Expand Down