Skip to content

Commit

Permalink
chore(release): 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and MaidSafe-QA committed Apr 8, 2022
1 parent 2d15911 commit 7d82504
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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.

## [3.0.0](https://github.com/maidsafe/sn_dbc/compare/v2.18.0...v3.0.0) (2022-04-08)


### ⚠ BREAKING CHANGES

* The sn_ringct crate was renamed to bls_ringct, so we update this reference.

* reference renamed ringct crate ([2d15911](https://github.com/maidsafe/sn_dbc/commit/2d15911eee1dd01bc4ece91ff294722255e54c76))

### [2.17.1](https://github.com/maidsafe/sn_dbc/compare/v2.17.0...v2.17.1) (2022-04-05)

## [2.17.0](https://github.com/maidsafe/sn_dbc/compare/v2.16.3...v2.17.0) (2022-04-05)
Expand Down
25 changes: 16 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sn_dbc"
version = "2.18.0"
version = "3.0.0"
description = "Safe Network DBC"
license = "MIT OR BSD-3-Clause"
repository = "https://github.com/maidsafe/sn_dbc"
Expand All @@ -18,9 +18,16 @@ mock = [ ]
blsttc = "5.2.0"
bls_ringct = "0.1.0"
hex = "0.4.3"
serde = { version = "1.0.133", features = [ "derive", "rc" ], optional = true }
thiserror = "1.0.24"
tiny-keccak = { features = [ "sha3" ], version = "2.0.0" }

[dependencies.serde]
version = "1.0.133"
features = [ "derive", "rc" ]
optional = true

[dependencies.tiny-keccak]
features = [ "sha3" ]
version = "2.0.0"

[dev-dependencies]
anyhow = "1.0.40"
Expand All @@ -30,16 +37,16 @@ quickcheck_macros = "1"
quickcheck = "1.0.3"
rustyline = "8.0.0"

[dev-dependencies.sn_dbc]
path = "."
features = [ "serdes", "mock" ]
[dev-dependencies.sn_dbc]
path = "."
features = [ "serdes", "mock" ]

[target."cfg(unix)".dev-dependencies]
termios = "0.3.3"

[target."cfg(unix)".dev-dependencies.pprof]
version = "0.7.0"
features = [ "flamegraph" ]
[target."cfg(unix)".dev-dependencies.pprof]
version = "0.7.0"
features = [ "flamegraph" ]

[[bench]]
name = "reissue"
Expand Down

0 comments on commit 7d82504

Please sign in to comment.