From 7895f08a9ef73bbfe2875ab6f255fb6d2015779a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 10 Jun 2022 21:31:58 +0000 Subject: [PATCH] chore(release): 6.0.0 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24dd9b8..4a50a33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [6.0.0](https://github.com/maidsafe/blsttc/compare/v5.2.0...v6.0.0) (2022-06-10) + + +### ⚠ BREAKING CHANGES + +* the `Eq`, `Serialize` and `Deserialize` derivations are removed from the error type +because the derived hex error doesn't implement these. + +I'm finding myself repeating this code several times in places where I'm using the BLS library, so I +thought it would be useful to just have it directly on these types. + +### Features + +* provide hex conversion utilities ([2509f30](https://github.com/maidsafe/blsttc/commit/2509f30c942115b8dbcd1e0ab9f82a0b835f4437)) + ## [5.2.0](https://github.com/maidsafe/blsttc/compare/v5.1.3...v5.2.0) (2022-04-05) diff --git a/Cargo.toml b/Cargo.toml index bcd080e..56e4340 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "blsttc" readme = "README.md" repository = "https://github.com/maidsafe/blsttc" -version = "5.2.0" +version = "6.0.0" [dependencies] ff = "0.11.0"