Skip to content

Commit

Permalink
chore: release ic-cdk v0.13.1 and ic-cdk-macros v0.9.0 (#470)
Browse files Browse the repository at this point in the history
* chore: release ic-cdk v0.13.1 and ic-cdk-macros v0.9.0

* pin ic-cdk-macros to a specific version
  • Loading branch information
lwshang authored Mar 1, 2024
1 parent 406e8aa commit ad36d90
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
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.

8 changes: 7 additions & 1 deletion src/ic-cdk-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.8.5] - 2024-03-01
## [0.9.0] - 2024-03-01

### Fixed

- The change in yanked version v0.8.5 contains breaking change.

## [0.8.5] - 2024-03-01 (yanked)

### Added

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.8.5" # no need to sync with ic-cdk
version = "0.9.0" # no need to sync with ic-cdk
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
8 changes: 7 additions & 1 deletion src/ic-cdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.13.0] - 2024-03-01
## [0.13.1] - 2024-03-01

### Changed

- Upgrade `ic-cdk-macros` to v0.9.0.

## [0.13.0] - 2024-03-01 (yanked)

### Added

Expand Down
9 changes: 7 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.0"
version = "0.13.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -22,7 +22,12 @@ include = ["src", "Cargo.toml", "LICENSE", "README.md"]
[dependencies]
candid.workspace = true
ic0.workspace = true
ic-cdk-macros = { path = "../ic-cdk-macros", version = "0.8.5" }
# Pin ic-cdk-macros to a specific version.
# This actually create a 1-to-1 mapping between ic-cdk and ic-cdk-macros.
# 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" }
serde.workspace = true
serde_bytes.workspace = true
slotmap = { workspace = true, optional = true }
Expand Down

0 comments on commit ad36d90

Please sign in to comment.