diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c3090b..572b7a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## 0.13.2 - 2024-10-21 +## 0.14.0 - 2024-10-21 ### Changed @@ -12,6 +12,10 @@ The format is based on [Keep a Changelog]. - chore(deps): bump primitives types from 0.12.0 to 0.13.1 ([#61](https://github.com/paritytech/scale-decode/pull/61)) - chore(deps): chore(deps): bump derive_more from 0.99 to 1.0.0 ([#62](https://github.com/paritytech/scale-decode/pull/62)) +## 0.13.2 - 2024-10-21 [YANKED] + +Yanked because `primitives-types` is re-exported from this crate and thus is a breaking change. + ## 0.13.1 - 2024-06-07 Useful visitor errors can be hidden in some cases when a `skip_decoding` error is also emitted. This patch release fixes that. diff --git a/Cargo.toml b/Cargo.toml index 7c4cb0d..3bdc3f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.13.2" +version = "0.14.0" authors = ["Parity Technologies "] edition = "2021" license = "Apache-2.0" @@ -17,5 +17,5 @@ keywords = ["parity", "scale", "decoding"] include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] [workspace.dependencies] -scale-decode = { version = "0.13.2", path = "scale-decode" } -scale-decode-derive = { version = "0.13.2", path = "scale-decode-derive" } +scale-decode = { version = "0.14.0", path = "scale-decode" } +scale-decode-derive = { version = "0.14.0", path = "scale-decode-derive" }