diff --git a/CHANGELOG.md b/CHANGELOG.md index c5e2498f3..0d6069c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,28 @@ 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.7.1](https://github.com/alloy-rs/core/releases/tag/v0.7.1) - 2024-04-23 + +### Bug Fixes + +- Use deploy in sol expansion ([#606](https://github.com/alloy-rs/core/issues/606)) + +### Documentation + +- Update README crate links to use URLs ([#603](https://github.com/alloy-rs/core/issues/603)) +- [sol-macro] Add some more disclaimers ([#595](https://github.com/alloy-rs/core/issues/595)) + +### Features + +- Add arbitrary for TxKind ([#604](https://github.com/alloy-rs/core/issues/604)) +- [json-abi] Support legacy JSON ABIs ([#596](https://github.com/alloy-rs/core/issues/596)) + +### Miscellaneous Tasks + +- FixedBytes instead of array +- Add a automatically_derived ([#597](https://github.com/alloy-rs/core/issues/597)) +- Update tests and clippy + ## [0.7.0](https://github.com/alloy-rs/core/releases/tag/v0.7.0) - 2024-03-30 ### Bug Fixes @@ -32,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.7.0 - No-default-features k256 ([#576](https://github.com/alloy-rs/core/issues/576)) - Remove dead code ([#571](https://github.com/alloy-rs/core/issues/571)) diff --git a/Cargo.toml b/Cargo.toml index 6ee542aa9..2f3b9759b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.7.0" +version = "0.7.1" edition = "2021" rust-version = "1.65" authors = ["Alloy Contributors"] @@ -18,15 +18,15 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # workspace crates -alloy-core = { version = "0.7.0", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.7.0", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.7.0", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.7.0", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.7.0", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.7.0", path = "crates/sol-macro-input", default-features = false } -alloy-sol-type-parser = { version = "0.7.0", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.7.0", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.7.0", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.7.1", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.7.1", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.7.1", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.7.1", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.7.1", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.7.1", path = "crates/sol-macro-input", default-features = false } +alloy-sol-type-parser = { version = "0.7.1", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.7.1", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.7.1", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] }