Skip to content

Commit 2ebd180

Browse files
Release ic-cdk 0.17 (#529)
1 parent 4e628a8 commit 2ebd180

File tree

7 files changed

+22
-14
lines changed

7 files changed

+22
-14
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ opt-level = 'z'
2121

2222
[workspace.dependencies]
2323
ic0 = { path = "src/ic0", version = "0.23.0" }
24-
ic-cdk = { path = "src/ic-cdk", version = "0.16.0" }
25-
ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.10.0" }
24+
ic-cdk = { path = "src/ic-cdk", version = "0.17.0" }
25+
ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.11.0" }
2626

2727
candid = "0.10.4"
2828
candid_parser = "0.1.4"

src/ic-cdk-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-cdk-macros"
3-
version = "0.16.0" # sync with ic-cdk
3+
version = "0.17.0" # sync with ic-cdk
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

src/ic-cdk-timers/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [unreleased]
88

9+
## [0.11.0] - 2024-11-04
10+
11+
### Changed
12+
13+
- Upgrade `ic-cdk` to v0.17.
14+
915
## [0.10.0] - 2024-08-27
1016

1117
### Changed

src/ic-cdk-timers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-cdk-timers"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

src/ic-cdk/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [unreleased]
88

9+
## [0.17.0] - 2024-11-04
10+
911
### Changed
1012

1113
- Add `AllowedViewers` variant to `LogVisibility` enum. (#512)

src/ic-cdk/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ic-cdk"
3-
version = "0.16.0" # sync with ic-cdk-macros
3+
version = "0.17.0" # sync with ic-cdk-macros
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
@@ -27,7 +27,7 @@ ic0.workspace = true
2727
# Dependents won't accidentaly upgrading ic-cdk-macros only but not ic-cdk.
2828
# ic-cdk-macros is a hidden dependency, re-exported by ic-cdk.
2929
# It should not be included by users direcly.
30-
ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.16.0" }
30+
ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.17.0" }
3131
serde.workspace = true
3232
serde_bytes.workspace = true
3333
slotmap = { workspace = true, optional = true }

0 commit comments

Comments
 (0)