diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eef9164ad..729c81b09f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added +- Nothing. + +### Changed + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- Nothing. + +### Security + +- Nothing. + +### Performance + +- Nothing. + +## [0.6.0] - 2024-01-05 + +### Added + - Add `FromBase58CheckError::IncorrectBase58Prefix` variant. - Add `NomReader`, `BinWriter` support for `Ed25519Signature`. - Add `signature::Signature` enum representing possible types of signature used in Tezos. diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index c8de5f60f7..958e061460 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.60" diff --git a/tezos-encoding-derive/Cargo.toml b/tezos-encoding-derive/Cargo.toml index 105edaf5f8..7d8f99279f 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.60" diff --git a/tezos-encoding/Cargo.toml b/tezos-encoding/Cargo.toml index 03328d5cbf..5882c8f8e4 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.60" @@ -23,12 +23,12 @@ lazy_static = "1.4" [dependencies.tezos_crypto_rs] path = "../crypto" -version = "0.5.2" +version = "0.6.0" default-features = false [dependencies.tezos_data_encoding_derive] path = "../tezos-encoding-derive" -version = "0.5.2" +version = "0.6.0" [dev-dependencies] serde_json = "1.0"