From 7708b62f70f7bed5b3efc9108c85a434f066f69a Mon Sep 17 00:00:00 2001 From: SW van Heerden Date: Wed, 6 Dec 2023 11:13:59 +0200 Subject: [PATCH] upgrade to 0.20 --- Cargo.toml | 6 +++--- changelog.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aa1aff90..8be02791 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,11 @@ categories = ["cryptography"] homepage = "https://tari.com" readme = "README.md" license = "BSD-3-Clause" -version = "0.19.1" +version = "0.20.0" edition = "2018" [dependencies] -tari_utilities = { version = "0.6.2", default-features = false, features = ["zero"] } +tari_utilities = { version = "0.7", default-features = false, features = ["zero"] } blake2 = { version = "0.10", default-features = false } borsh = { version = "1.2" , optional = true , default-features = false, features = ["derive"]} bulletproofs_plus = { package = "tari_bulletproofs_plus", version = "0.3", optional = true } @@ -27,7 +27,7 @@ snafu = { version = "0.7", default-features = false} zeroize = {version = "1" , default-features = false} [dev-dependencies] -tari_utilities = { version = "0.6", features = ["std"] } +tari_utilities = { version = "0.7", features = ["std"] } serde = { version = "1.0"} bincode = { version = "1.1" } criterion = { version = "0.5", default-features = false } diff --git a/changelog.md b/changelog.md index 0c1d0c60..71838545 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,7 @@ # Changelog 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. -## [0.19.1](https://github.com/tari-project/tari-crypto/compare/v0.19.0...v0.19.1) (2023-11-30) +## [0.20.0](https://github.com/tari-project/tari-crypto/compare/v0.19.0...v0.20.0) (2023-12-06) ### Features * Upgrade borsh to 1.2 official