From f4bfc7fb26d4298e5494f6a6be0809ed0ac0b0a5 Mon Sep 17 00:00:00 2001 From: ordian Date: Tue, 10 Oct 2023 12:05:54 +0200 Subject: [PATCH 1/2] primitive-types: release 0.12.2 --- primitive-types/CHANGELOG.md | 5 ++++- primitive-types/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/primitive-types/CHANGELOG.md b/primitive-types/CHANGELOG.md index e33e0cd5f..5545d482d 100644 --- a/primitive-types/CHANGELOG.md +++ b/primitive-types/CHANGELOG.md @@ -6,7 +6,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] -## [0.12.1] - 2022-20-27 +## [0.12.2] - 2023-10-10 +- Added `schemars` support via `json-schema` feature. [#785](https://github.com/paritytech/parity-common/pull/785) + +## [0.12.1] - 2022-10-27 - Added `H384` and `H768` types. [#684](https://github.com/paritytech/parity-common/pull/684) ## [0.12.0] - 2022-09-20 diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index d642effc6..126b17dca 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "primitive-types" -version = "0.12.1" +version = "0.12.2" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" From 5bfb87dc1dccdf392f32c589b1d734a1cf814261 Mon Sep 17 00:00:00 2001 From: ordian Date: Tue, 10 Oct 2023 12:09:20 +0200 Subject: [PATCH 2/2] bounded-collections: release 0.1.9 --- bounded-collections/CHANGELOG.md | 3 +++ bounded-collections/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bounded-collections/CHANGELOG.md b/bounded-collections/CHANGELOG.md index 4ab3266d4..a76dffed1 100644 --- a/bounded-collections/CHANGELOG.md +++ b/bounded-collections/CHANGELOG.md @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [0.1.9] - 2023-10-10 +- Added `serde` support for `BoundedBTreeSet`. [#781](https://github.com/paritytech/parity-common/pull/781) + ## [0.1.8] - 2023-06-11 - Altered return types of `BoundedVec::force_insert_keep_` functions to return the element in case of error. - Added `new` and `clear` to `BoundedVec`. diff --git a/bounded-collections/Cargo.toml b/bounded-collections/Cargo.toml index fb14da382..d74943398 100644 --- a/bounded-collections/Cargo.toml +++ b/bounded-collections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bounded-collections" -version = "0.1.8" +version = "0.1.9" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common"