Skip to content

Commit

Permalink
release: 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emturner committed Jul 1, 2024
1 parent f14f784 commit 0f62a55
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_crypto_rs"
version = "0.5.2"
version = "0.6.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.64"
Expand Down
2 changes: 1 addition & 1 deletion tezos-encoding-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding_derive"
version = "0.5.2"
version = "0.6.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.64"
Expand Down
4 changes: 2 additions & 2 deletions tezos-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding"
version = "0.5.2"
version = "0.6.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.64"
Expand All @@ -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"
Expand Down

0 comments on commit 0f62a55

Please sign in to comment.