diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a6b62a1..1d7f401f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.2](https://github.com/near/borsh-rs/compare/borsh-v1.0.0-alpha.1...borsh-v1.0.0-alpha.2) - 2023-08-10 + +### Other +- [**breaking**] borsh_init to borsh(init). ([#187](https://github.com/near/borsh-rs/pull/187)) + ## [1.0.0-alpha.1](https://github.com/near/borsh-rs/compare/borsh-v0.11.0...borsh-v1.0.0-alpha.1) - 2023-08-07 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 35f752176..1c2ca46f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,5 +3,5 @@ members = ["borsh", "borsh-derive", "fuzz/fuzz-run", "benchmarks"] [workspace.package] # shared version of all public crates in the workspace -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" rust-version = "1.66.0" diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index 22711d659..442fb61cc 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -27,7 +27,7 @@ required-features = ["std", "derive", "schema"] cfg_aliases = "0.1.0" [dependencies] -borsh-derive = { path = "../borsh-derive", version = "1.0.0-alpha.1", optional = true } +borsh-derive = { path = "../borsh-derive", version = "1.0.0-alpha.2", optional = true } hashbrown = { version = ">=0.11,<0.14", optional = true } bytes = { version = "1", optional = true } bson = { version = "2", optional = true }