diff --git a/CHANGELOG.md b/CHANGELOG.md index a50e3849d..d41d8a5ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,44 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.5.4](https://github.com/alloy-rs/core/releases/tag/v0.5.4) - 2023-12-28 +## [0.6.0](https://github.com/alloy-rs/core/releases/tag/v0.6.0) - 2024-01-10 + +### Bug Fixes + +- [primitives] Also apply EIP-155 to Parity::Parity ([#476](https://github.com/alloy-rs/core/issues/476)) +- Clean the sealed ([#468](https://github.com/alloy-rs/core/issues/468)) + +### Dependencies + +- [deps] Relax k256 requirement ([#481](https://github.com/alloy-rs/core/issues/481)) +- [deps] Bump const-hex requirement ([#479](https://github.com/alloy-rs/core/issues/479)) + +### Documentation + +- Update docs on parity ([#477](https://github.com/alloy-rs/core/issues/477)) + +### Features + +- [json-abi] Add full_signature ([#480](https://github.com/alloy-rs/core/issues/480)) +- [primitives] Add Signature type and utils ([#459](https://github.com/alloy-rs/core/issues/459)) +- [primitives] Add a buffer type for address checksums ([#472](https://github.com/alloy-rs/core/issues/472)) +- [dyn-abi] Improve hex error messages ([#474](https://github.com/alloy-rs/core/issues/474)) +- [sol-type-parser] Improve error message for bad array size ([#470](https://github.com/alloy-rs/core/issues/470)) +- [primitives] Add Keccak256 hasher struct ([#469](https://github.com/alloy-rs/core/issues/469)) + +### Miscellaneous Tasks + +- Bless tests ([#478](https://github.com/alloy-rs/core/issues/478)) +- Clippy uninlined_format_args, use_self ([#475](https://github.com/alloy-rs/core/issues/475)) +- Touch up UDVT expansion ([#473](https://github.com/alloy-rs/core/issues/473)) +- Move define_udt! decl macro to sol! proc macro ([#471](https://github.com/alloy-rs/core/issues/471)) +- Release 0.5.4 + +### Refactor + +- Log implementation ([#465](https://github.com/alloy-rs/core/issues/465)) + +## [0.5.4](https://github.com/alloy-rs/core/releases/tag/v0.5.4) - 2023-12-27 ### Features diff --git a/Cargo.toml b/Cargo.toml index f1d32c9e1..a086a5b0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.5.4" +version = "0.6.0" edition = "2021" rust-version = "1.65" authors = ["Alloy Contributors"] @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # workspace crates -alloy-dyn-abi = { version = "0.5.4", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.5.4", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.5.4", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.5.4", path = "crates/sol-macro", default-features = false } -alloy-sol-type-parser = { version = "0.5.4", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.5.4", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.5.4", path = "crates/syn-solidity", default-features = false } +alloy-dyn-abi = { version = "0.6.0", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.6.0", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.6.0", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.6.0", path = "crates/sol-macro", default-features = false } +alloy-sol-type-parser = { version = "0.6.0", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.6.0", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.6.0", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] }