diff --git a/CHANGELOG.md b/CHANGELOG.md index 3172dc4558..a1a4be4c73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added +- Nothing. + +### Changed + +- Nothing. + +### Fixed + +- Nothing. + +### Security + +- Nothing. + +### Performance + +- Nothing. + +## [0.6.0 - 2024-07-01] + +### Added + - Add `FromBase58CheckError::IncorrectBase58Prefix` variant. - Add `NomReader`, `BinWriter` support for `Ed25519Signature`. - Add `signature::Signature` enum representing possible types of signature used in Tezos. @@ -67,7 +89,7 @@ parameterized by the lifetime of the input byte slice. ### Security -- Nothing. +- Bump curve25519-dalek to 4.1.3 to address RUSTSEC audit issue. ### Performance diff --git a/Cargo.toml b/Cargo.toml index 6a4f5187eb..2e1f2fffb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,17 +9,17 @@ members = [ ] [workspace.dependencies.tezos_data_encoding] -version = "0.5.2" +version = "0.6.0" path = "./tezos-encoding" default-features = false [workspace.dependencies.tezos_data_encoding_derive] -version = "0.5.2" +version = "0.6.0" path = "./tezos-encoding-derive" default-features = false [workspace.dependencies.tezos_crypto_rs] -version = "0.5.2" +version = "0.6.0" path = "./crypto" default-features = false diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 5b6df8a324..1bac544895 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tezos_crypto_rs" -version = "0.5.2" +version = "0.6.0" authors = ["TriliTech "] edition = "2021" rust-version = "1.64" diff --git a/tezos-encoding-derive/Cargo.toml b/tezos-encoding-derive/Cargo.toml index 3f1255fc7d..39fdbe8988 100644 --- a/tezos-encoding-derive/Cargo.toml +++ b/tezos-encoding-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tezos_data_encoding_derive" -version = "0.5.2" +version = "0.6.0" authors = ["TriliTech "] edition = "2021" rust-version = "1.64" diff --git a/tezos-encoding/Cargo.toml b/tezos-encoding/Cargo.toml index b1ed9f9cff..446528eab4 100644 --- a/tezos-encoding/Cargo.toml +++ b/tezos-encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tezos_data_encoding" -version = "0.5.2" +version = "0.6.0" authors = ["TriliTech "] edition = "2021" rust-version = "1.64" @@ -23,7 +23,7 @@ lazy_static = "1.4" [dependencies.tezos_data_encoding_derive] path = "../tezos-encoding-derive" -version = "0.5.2" +version = "0.6.0" [dev-dependencies] serde_json = "1.0"