From e73a6afa3c7e1993eab017ecd5bc2b032ff9e2e7 Mon Sep 17 00:00:00 2001 From: Vlad Frolov <304265+frol@users.noreply.github.com> Date: Thu, 7 Dec 2023 18:29:44 +0000 Subject: [PATCH] chore: release Signed-off-by: Vlad Frolov <304265+frol@users.noreply.github.com> --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- borsh/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0c22f42..57591ede4 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.3.0](https://github.com/near/borsh-rs/compare/borsh-v1.2.1...borsh-v1.3.0) - 2023-12-07 + +### Added +- impl `BorshSchema` for `Rc` and `Arc`; add doc for `rc` feature ([#268](https://github.com/near/borsh-rs/pull/268)) + ## [1.2.1](https://github.com/near/borsh-rs/compare/borsh-v1.2.0...borsh-v1.2.1) - 2023-12-06 ### Other diff --git a/Cargo.toml b/Cargo.toml index 803f51435..90c2c3f66 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.2.1" +version = "1.3.0" rust-version = "1.66.0" diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index a241eeefa..f8245863b 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -28,7 +28,7 @@ cfg_aliases = "0.1.0" [dependencies] ascii = { version = "1.1", optional = true } -borsh-derive = { path = "../borsh-derive", version = "~1.2.1", optional = true } +borsh-derive = { path = "../borsh-derive", version = "~1.3.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