diff --git a/CHANGELOG.md b/CHANGELOG.md index 667c5e1d1..2d0fff201 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-alpha.6](https://github.com/near/borsh-rs/compare/borsh-v1.0.0-alpha.5...borsh-v1.0.0-alpha.6) - 2023-10-02 + +### Added +- add `borsh::object_length` helper ([#236](https://github.com/near/borsh-rs/pull/236)) + +### Other +- add examples for `borsh::to_vec`, `borsh::to_writer`, `borsh::object_length` ([#238](https://github.com/near/borsh-rs/pull/238)) +- [**breaking**] completely remove deprecated `BorshSerialize::try_to_vec` ([#221](https://github.com/near/borsh-rs/pull/221)) + ## [1.0.0-alpha.5](https://github.com/near/borsh-rs/compare/borsh-v1.0.0-alpha.4...borsh-v1.0.0-alpha.5) - 2023-09-26 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2600607b2..af331c655 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.5" +version = "1.0.0-alpha.6" rust-version = "1.66.0" diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index 34f2a48b0..8ff4617f9 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -27,7 +27,7 @@ required-features = ["std", "unstable__schema"] cfg_aliases = "0.1.0" [dependencies] -borsh-derive = { path = "../borsh-derive", version = "1.0.0-alpha.5", optional = true } +borsh-derive = { path = "../borsh-derive", version = "1.0.0-alpha.6", optional = true } # hashbrown can be used in no-std context. # NOTE: There is no reason to restrict use of older versions, but we don't want to get