Skip to content

Commit

Permalink
chore: release ic-cdk v0.16.0 (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang authored Aug 27, 2024
1 parent bd17d57 commit 3e54016
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 18 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ opt-level = 'z'

[workspace.dependencies]
ic0 = { path = "src/ic0", version = "0.23.0" }
ic-cdk = { path = "src/ic-cdk", version = "0.15.0" }
ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.9.0" }
ic-cdk = { path = "src/ic-cdk", version = "0.16.0" }
ic-cdk-timers = { path = "src/ic-cdk-timers", version = "0.10.0" }

candid = "0.10.4"
candid_parser = "0.1.4"
Expand Down
6 changes: 6 additions & 0 deletions library/ic-ledger-types/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.0] - 2024-08-27

### Changed

- Upgrade `ic-cdk` to v0.16.

## [0.12.0] - 2024-07-01

### Changed
Expand Down
2 changes: 1 addition & 1 deletion library/ic-ledger-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-ledger-types"
version = "0.12.0"
version = "0.13.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
9 changes: 7 additions & 2 deletions src/ic-cdk-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Changelog

This file will no longer be updated.

Please check [`ic-cdk` changelog](../ic-cdk/CHANGELOG.md).

---

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]

### Fixed

- `cargo build` should no longer give a confusing linkage error on Linux.
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.15.0" # sync with ic-cdk
version = "0.16.0" # sync with ic-cdk
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/ic-cdk-timers/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.10.0] - 2024-08-27

### Changed

- Upgrade `ic-cdk` to v0.16.

## [0.9.0] - 2024-07-01

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/ic-cdk-timers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ic-cdk-timers"
version = "0.9.0"
version = "0.10.0"
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.16.0] - 2024-08-27

### Changed

- BREAKING: Add the `LoadSnapshot` variant to `CanisterChangeDetails`. (#504)
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.15.0" # sync with ic-cdk-macros
version = "0.16.0" # 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.15.0" }
ic-cdk-macros = { path = "../ic-cdk-macros", version = "=0.16.0" }
serde.workspace = true
serde_bytes.workspace = true
slotmap = { workspace = true, optional = true }
Expand Down

0 comments on commit 3e54016

Please sign in to comment.