diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b249a818..4f3ba7e9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/near/borsh-rs/compare/borsh-v1.1.0...borsh-v2.0.0) - 2023-10-25 + +### Other +- addressed warnings in docs generation ([#252](https://github.com/near/borsh-rs/pull/252)) +- [**breaking**] simplify discriminants handling in schema derives ([#241](https://github.com/near/borsh-rs/pull/241)) + ## [1.1.0](https://github.com/near/borsh-rs/compare/borsh-v1.0.0...borsh-v1.1.0) - 2023-10-13 ### Added diff --git a/Cargo.toml b/Cargo.toml index cb92d07ee..b910a2807 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.1.0" +version = "2.0.0" rust-version = "1.66.0" diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index 4c52e6854..c7d4cc252 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.1.0", optional = true } +borsh-derive = { path = "../borsh-derive", version = "~2.0.0", 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