Skip to content

Commit

Permalink
release: v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emturner committed May 12, 2023
1 parent 033232d commit 971dbb6
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 10 deletions.
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

### Security

- Nothing.

### Performance

- Nothing.

## [0.5.0] - 2023-05-12

### Added

- Nothing.

### Changed

- Ed25519 implementation switched from `ed25519_compact` to `ed25519-dalek`.
- `PublicKeyEd25519::sign` no longer takes an `Iterator`, instead only one `AsRef<u8>` is allowed.
- Depencies bumped, including `nom` -> `7.1`.
Expand All @@ -21,7 +51,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Removed

- Nothing.
- `tezos_crypto_rs`: errors no longer implement `PartialEq`, `Clone`.
- `tezos_crypto_rs`: errors no longer are (de)serializable with serde.

### Fixed

Expand All @@ -33,7 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Performance

- Nothing.
- Improvements in verification of `tz1` signatures, due to change in Ed25519 backend.

## [0.4.4] - 2023-03-16

Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.4.4"
version = "0.5.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
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.4.4"
version = "0.5.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand Down
6 changes: 3 additions & 3 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.4.4"
version = "0.5.0"
authors = ["TriliTech <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -23,12 +23,12 @@ lazy_static = "1.4"

[dependencies.tezos_crypto_rs]
path = "../crypto"
version = "0.4.4"
version = "0.5.0"
default-features = false

[dependencies.tezos_data_encoding_derive]
path = "../tezos-encoding-derive"
version = "0.4.4"
version = "0.5.0"

[features]

Expand Down

0 comments on commit 971dbb6

Please sign in to comment.