Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.6.0 #80

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading