From 022c63db87b6bca348dd8e55f86c94a614b99cb6 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 10 Sep 2024 03:19:43 +0200 Subject: [PATCH] chore: release 0.8.3 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 22 +++++++++++----------- crates/core/CHANGELOG.md | 6 ++++++ crates/dyn-abi/CHANGELOG.md | 4 ++++ crates/json-abi/CHANGELOG.md | 6 ++++++ crates/primitives/CHANGELOG.md | 10 ++++++++++ crates/sol-macro-expander/CHANGELOG.md | 14 ++++++++++++++ crates/sol-macro-input/CHANGELOG.md | 6 ++++++ crates/sol-macro/CHANGELOG.md | 6 ++++++ crates/sol-type-parser/CHANGELOG.md | 6 ++++++ crates/sol-types/CHANGELOG.md | 14 ++++++++++++++ crates/syn-solidity/CHANGELOG.md | 12 ++++++++++++ 12 files changed, 111 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2925a2fd8..97098c11d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 + +### Bug Fixes + +- [sol-macro] Correctly determine whether event parameters are hashes ([#735](https://github.com/alloy-rs/core/issues/735)) +- [sol-macro] Namespaced custom type resolution ([#731](https://github.com/alloy-rs/core/issues/731)) +- Parse selector hashes in `sol` macro ([#730](https://github.com/alloy-rs/core/issues/730)) + +### Features + +- Prepare reth Signature migration to alloy ([#732](https://github.com/alloy-rs/core/issues/732)) + ## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 ### Bug Fixes @@ -15,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726)) +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 5941f4f145..a2c2bf9a71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.2" +version = "0.8.3" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.2", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.2", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.2", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.2", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.2", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.2", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.2", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.2", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.2", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.2", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.3", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.3", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.3", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.3", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.3", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.3", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.3", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.3", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.3", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.3", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index c75980d686..9989e14cf0 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Miscellaneous Tasks diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index 9c2bc2b706..1ef2538157 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-abi/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727)) +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Miscellaneous Tasks diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index 8b65b1b504..3d108e0815 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Dependencies diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 8cbc775b79..57defc6e3e 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 + +### Features + +- Prepare reth Signature migration to alloy ([#732](https://github.com/alloy-rs/core/issues/732)) + ## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 ### Bug Fixes @@ -15,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726)) +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Bug Fixes diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 8fb9a13132..dfa381cdc1 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/CHANGELOG.md @@ -5,6 +5,20 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 + +### Bug Fixes + +- [sol-macro] Correctly determine whether event parameters are hashes ([#735](https://github.com/alloy-rs/core/issues/735)) +- [sol-macro] Namespaced custom type resolution ([#731](https://github.com/alloy-rs/core/issues/731)) +- Parse selector hashes in `sol` macro ([#730](https://github.com/alloy-rs/core/issues/730)) + +## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Dependencies diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index ff5918e710..37bc234e0f 100644 --- a/crates/sol-macro-input/CHANGELOG.md +++ b/crates/sol-macro-input/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Miscellaneous Tasks diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index 8a17b2af08..6da18a63e1 100644 --- a/crates/sol-macro/CHANGELOG.md +++ b/crates/sol-macro/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index d1e10e5c6a..f391d302f5 100644 --- a/crates/sol-type-parser/CHANGELOG.md +++ b/crates/sol-type-parser/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Bug Fixes diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index 6da50553a8..85e6d6c5fb 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/CHANGELOG.md @@ -5,6 +5,20 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 + +### Bug Fixes + +- [sol-macro] Correctly determine whether event parameters are hashes ([#735](https://github.com/alloy-rs/core/issues/735)) +- [sol-macro] Namespaced custom type resolution ([#731](https://github.com/alloy-rs/core/issues/731)) +- Parse selector hashes in `sol` macro ([#730](https://github.com/alloy-rs/core/issues/730)) + +## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Dependencies diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index 21c69d742b..a656125af5 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/CHANGELOG.md @@ -5,6 +5,18 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 + +### Bug Fixes + +- [sol-macro] Correctly determine whether event parameters are hashes ([#735](https://github.com/alloy-rs/core/issues/735)) + +## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.2 + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Miscellaneous Tasks