From 3d733eb3de88623d8b5089a4574c0263f900c965 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 2 Jun 2021 10:23:29 +0000 Subject: [PATCH] chore(release): 1.5.0 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 16 +++++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc1fa95..42a0425 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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. +## [1.5.0](https://github.com/maidsafe/sn_dbc/compare/v1.4.0...v1.5.0) (2021-06-02) + + +### Features + +* **bench:** benchmark split and merge reissus ([852ac41](https://github.com/maidsafe/sn_dbc/commit/852ac41ddb46726268f81ff1c58bda5a52e6b9e3)) + ## [1.4.0](https://github.com/maidsafe/sn_dbc/compare/v1.3.1...v1.4.0) (2021-05-28) diff --git a/Cargo.toml b/Cargo.toml index c227c1a..69f5695 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sn_dbc" -version = "1.4.0" +version = "1.5.0" description = "Safe Network DBC" license = "MIT OR BSD-3-Clause" repository = "https://github.com/maidsafe/sn_dbc" @@ -10,7 +10,7 @@ authors = [ "MaidSafe Developers " ] edition = "2018" [features] -dkg = ["bls_dkg"] +dkg = [ "bls_dkg" ] [dependencies] serde_json = "1.0.64" @@ -18,9 +18,12 @@ thiserror = "1.0.24" quickcheck = "1" quickcheck_macros = "1" rand = "0.7.1" -bls_dkg = { version = "~0.3.8", optional = true } threshold_crypto = "0.4" + [dependencies.bls_dkg] + version = "~0.3.8" + optional = true + [dependencies.tiny-keccak] version = "2.0.0" features = [ "sha3" ] @@ -35,10 +38,13 @@ threshold_crypto = "0.4" features = [ "derive", "rc" ] [dev-dependencies] -sn_dbc = {path = ".", features = ["dkg"] } # HACK: enable the dkg features in tests criterion = "0.3" + [dev-dependencies.sn_dbc] + path = "." + features = [ "dkg" ] + [[bench]] name = "reissue" harness = false -required-features = ["dkg"] +required-features = [ "dkg" ]