diff --git a/CHANGELOG.md b/CHANGELOG.md index b98ff2c0a..55e1f3860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.0](https://github.com/near/borsh-rs/compare/borsh-v1.5.0...borsh-v1.6.0) - 2024-05-30 + +### Added +- *(schema)* for `HashMap` -> `HashMap`, for `HashSet` -> `HashSet` ([#294](https://github.com/near/borsh-rs/pull/294)) + +### Fixed +- fixed linting warnings for Rust 1.78 stable, 1.80 nightly ([#295](https://github.com/near/borsh-rs/pull/295)) + ## [1.5.0](https://github.com/near/borsh-rs/compare/borsh-v1.4.0...borsh-v1.5.0) - 2024-04-29 ### Added diff --git a/Cargo.toml b/Cargo.toml index 7e7700c9d..a8d2dc6c3 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.5.0" +version = "1.6.0" rust-version = "1.67.0" diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index b83e776a6..80f28c302 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -28,7 +28,7 @@ cfg_aliases = "0.2.1" [dependencies] ascii = { version = "1.1", optional = true } -borsh-derive = { path = "../borsh-derive", version = "~1.5.0", optional = true } +borsh-derive = { path = "../borsh-derive", version = "~1.6.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