Skip to content

Commit

Permalink
chore: release (#143)
Browse files Browse the repository at this point in the history
Co-authored-by: release-plz <release-plz@github.com>
  • Loading branch information
frol and release-plz committed Jun 2, 2023
1 parent b18042d commit b242f59
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Add optional BSON object id support
## [0.11.0](https://github.com/near/borsh-rs/compare/borsh-v0.10.3...borsh-v0.11.0) - 2023-05-31

## [0.10.3] - 2022-03-22
### Added
- add BorshSchema for PhantomData, BTreeMap and BTreeSet ([#93](https://github.com/near/borsh-rs/pull/93))
- Add optional bson::oid::ObjectId support ([#135](https://github.com/near/borsh-rs/pull/135))
- [**breaking**] ser/de enum discriminant ([#138](https://github.com/near/borsh-rs/pull/138))

### Fixed
- no-std tests did not run due to dev-dependencies re-enabling std feature ([#144](https://github.com/near/borsh-rs/pull/144))

### Other
- use release-plz and specify common rust version correctly ([#134](https://github.com/near/borsh-rs/pull/134))
- Upgrade plain-HTTP links to HTTPS in Cargo.toml files ([#141](https://github.com/near/borsh-rs/pull/141))

## [0.10.3] - 2023-03-22

- Add optional bytes/bytesmut support

## [0.10.2] - 2022-02-14
## [0.10.2] - 2023-02-14

- Prevent unbound allocation for vectors on deserialization

## [0.10.1] - 2022-02-08
## [0.10.1] - 2023-02-08

- Implemented (de)ser for `core::ops::range`
- Introduce de::EnumExt trait with deserialize_variant method
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ members = [

[workspace.package]
# shared version of all public crates in the workspace
version = "0.10.3"
version = "0.11.0"
4 changes: 2 additions & 2 deletions borsh-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Binary Object Representation Serializer for Hashing
proc-macro = true

[dependencies]
borsh-derive-internal = { path = "../borsh-derive-internal" }
borsh-schema-derive-internal = { path = "../borsh-schema-derive-internal" }
borsh-derive-internal = { path = "../borsh-derive-internal", version = "0.11.0" }
borsh-schema-derive-internal = { path = "../borsh-schema-derive-internal", version = "0.11.0" }
syn = {version = "1", features = ["full", "fold"] }
proc-macro-crate = "0.1.5"
proc-macro2 = "1"
2 changes: 1 addition & 1 deletion borsh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name = "generate_schema_schema"
path = "src/generate_schema_schema.rs"

[dependencies]
borsh-derive = { path = "../borsh-derive" }
borsh-derive = { path = "../borsh-derive", version = "0.11.0" }
hashbrown = ">=0.11,<0.14"
bytes = { version = "1", optional = true }
bson = { version = "2", optional = true }
Expand Down

0 comments on commit b242f59

Please sign in to comment.