Skip to content

Commit

Permalink
chore(release): 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and MaidSafe-QA committed Jun 2, 2021
1 parent 740e534 commit 3d733eb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
16 changes: 11 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -10,17 +10,20 @@ authors = [ "MaidSafe Developers <dev@maidsafe.net>" ]
edition = "2018"

[features]
dkg = ["bls_dkg"]
dkg = [ "bls_dkg" ]

[dependencies]
serde_json = "1.0.64"
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" ]
Expand All @@ -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" ]

0 comments on commit 3d733eb

Please sign in to comment.