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: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ opt-level = 'z'

[workspace.dependencies]
ic0 = { path = "ic0", version = "1.0.0" }
ic-cdk = { path = "ic-cdk", version = "0.18.5" }
ic-cdk = { path = "ic-cdk", version = "0.18.6" }
ic-cdk-timers = { path = "ic-cdk-timers", version = "0.12.2" }
ic-cdk-executor = { path = "ic-cdk-executor", version = "1.0.2" }
ic-management-canister-types = { path = "ic-management-canister-types", version = "0.3.2" }
Expand Down
2 changes: 1 addition & 1 deletion 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.18.5" # sync with ic-cdk
version = "0.18.6" # sync with ic-cdk
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions 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.18.6] - 2025-08-19

### Added

- Restored the default `skipping_quota` to match the behavior of previous versions of the macros.
Expand Down
4 changes: 2 additions & 2 deletions ic-cdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-cdk"
version = "0.18.5" # sync with ic-cdk-macros and the doc comment in README.md
version = "0.18.6" # sync with ic-cdk-macros and the doc comment in README.md
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down Expand Up @@ -28,7 +28,7 @@ ic-cdk-executor.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.18.5" }
ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.18.6" }
ic-error-types = "0.2.0"
ic-management-canister-types.workspace = true
serde.workspace = true
Expand Down
Loading