From 9152d913d26213822a3836b23d358e6376389150 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:02:57 +0200 Subject: [PATCH] chore: release 0.8.5 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 22 +++++++++++----------- crates/core/CHANGELOG.md | 1 + crates/dyn-abi/CHANGELOG.md | 4 ++++ crates/json-abi/CHANGELOG.md | 4 ++++ crates/primitives/CHANGELOG.md | 11 +++++++++++ crates/sol-macro-expander/CHANGELOG.md | 4 ++++ crates/sol-macro-input/CHANGELOG.md | 4 ++++ crates/sol-macro/CHANGELOG.md | 6 ++++++ crates/sol-type-parser/CHANGELOG.md | 4 ++++ crates/sol-types/CHANGELOG.md | 4 ++++ crates/syn-solidity/CHANGELOG.md | 4 ++++ 12 files changed, 68 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4688e9ae5..e603179bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Bug Fixes + +- [primitives] Make sure DefaultHashBuilder implements Clone ([#748](https://github.com/alloy-rs/core/issues/748)) + +### Miscellaneous Tasks + +- [primitives] Remove Fx* aliases ([#749](https://github.com/alloy-rs/core/issues/749)) + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes @@ -20,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.4 - Remove unused unstable-doc feature ### Other diff --git a/Cargo.toml b/Cargo.toml index 7702b94f9..e345b6b50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.4" +version = "0.8.5" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.4", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.4", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.4", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.4", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.4", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.4", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.4", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.4", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.4", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.4", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.5", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.5", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.5", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.5", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.5", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.5", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.5", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.5", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.5", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.5", 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 69f846ab1..491676d47 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.4 - Remove unused unstable-doc feature ### Testing diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index 3413898f1..b0cfd2c89 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 - [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743)) +### Miscellaneous Tasks + +- Release 0.8.4 + ### Other - Add custom serialization for Address ([#742](https://github.com/alloy-rs/core/issues/742)) diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index 003476d52..b06d16b01 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/CHANGELOG.md @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743)) +### Miscellaneous Tasks + +- Release 0.8.4 + ## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 ### Miscellaneous Tasks diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 9a80005a4..0f52723fb 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,6 +5,16 @@ 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Bug Fixes + +- [primitives] Make sure DefaultHashBuilder implements Clone ([#748](https://github.com/alloy-rs/core/issues/748)) + +### Miscellaneous Tasks + +- [primitives] Remove Fx* aliases ([#749](https://github.com/alloy-rs/core/issues/749)) + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Features @@ -14,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.4 - Remove unused unstable-doc feature ### Other diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index fb1af706b..caec0587e 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [sol-types] Check signature in SolEvent if non-anonymous ([#741](https://github.com/alloy-rs/core/issues/741)) +### Miscellaneous Tasks + +- Release 0.8.4 + ## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 ### Bug Fixes diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 0fa385130..811dc82e9 100644 --- a/crates/sol-macro-input/CHANGELOG.md +++ b/crates/sol-macro-input/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [json-abi] Normalize $ to _ in identifiers in to_sol ([#747](https://github.com/alloy-rs/core/issues/747)) +### Miscellaneous Tasks + +- Release 0.8.4 + ## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 ### Miscellaneous Tasks diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index 0b3862e17..e7e89025b 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.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.4 + ## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index d0b0bc22d..026b84f56 100644 --- a/crates/sol-type-parser/CHANGELOG.md +++ b/crates/sol-type-parser/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743)) +### Miscellaneous Tasks + +- Release 0.8.4 + ## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10 ### Miscellaneous Tasks diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index 298ed5c77..5bd99ce7d 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/CHANGELOG.md @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745)) - [sol-types] Check signature in SolEvent if non-anonymous ([#741](https://github.com/alloy-rs/core/issues/741)) +### Miscellaneous Tasks + +- Release 0.8.4 + ### Testing - Allow missing_docs in tests diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index 11319ab9e..f36624170 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745)) +### Miscellaneous Tasks + +- Release 0.8.4 + ### Testing - Allow missing_docs in tests