From d9ad5fb4e6aabdaefd174e8397e747c00a59efbb Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:58:44 +0100 Subject: [PATCH] chore: release 0.8.10 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++ Cargo.toml | 22 +++++++++---------- crates/core/CHANGELOG.md | 4 ++++ crates/dyn-abi/CHANGELOG.md | 16 ++++++++++++++ crates/json-abi/CHANGELOG.md | 12 +++++++++++ crates/primitives/CHANGELOG.md | 22 +++++++++++++++++++ crates/sol-macro-expander/CHANGELOG.md | 6 ++++++ crates/sol-macro-input/CHANGELOG.md | 6 ++++++ crates/sol-macro/CHANGELOG.md | 6 ++++++ crates/sol-type-parser/CHANGELOG.md | 16 ++++++++++++++ crates/sol-types/CHANGELOG.md | 20 +++++++++++++++++ crates/syn-solidity/CHANGELOG.md | 16 ++++++++++++++ 12 files changed, 165 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f5770a8..1f25d2914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,32 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +### Documentation + +- Fix param type in example comment ([#784](https://github.com/alloy-rs/core/issues/784)) + +### Miscellaneous Tasks + +- Address MSRV TODOs for 1.81 ([#781](https://github.com/alloy-rs/core/issues/781)) + +### Other + +- Implement `DerefMut` for `Log` ([#786](https://github.com/alloy-rs/core/issues/786)) + +### Refactor + +- Use simple boolean for parity in signature ([#776](https://github.com/alloy-rs/core/issues/776)) + ## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 ### Bug Fixes @@ -15,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773)) +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 477ca5a71..0a3974fc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.9" +version = "0.8.10" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.9", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.9", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.9", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.9", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.9", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.9", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.9", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.9", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.9", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.9", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.10", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.10", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.10", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.10", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.10", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.10", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.10", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.10", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.10", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.10", 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 9f13acbbe..92cd5ff84 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777)) +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index ddeebadd7..852f32a8a 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-abi/CHANGELOG.md @@ -5,6 +5,22 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index 27e18661e..c9f9adf86 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Documentation + +- Fix param type in example comment ([#784](https://github.com/alloy-rs/core/issues/784)) + +## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index e64ca4555..e02248daf 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,6 +5,24 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +### Other + +- Implement `DerefMut` for `Log` ([#786](https://github.com/alloy-rs/core/issues/786)) + +### Refactor + +- Use simple boolean for parity in signature ([#776](https://github.com/alloy-rs/core/issues/776)) + ## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 ### Bug Fixes @@ -15,6 +33,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773)) +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Bug Fixes diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 04f732941..e56a50d9d 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Bug Fixes diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 9ce9199df..884291ab2 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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index c9f820cbd..e342671d9 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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index b1d31fb3d..977526284 100644 --- a/crates/sol-type-parser/CHANGELOG.md +++ b/crates/sol-type-parser/CHANGELOG.md @@ -5,6 +5,22 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index 1704690c4..0dbad0f34 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/CHANGELOG.md @@ -5,6 +5,26 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +### Miscellaneous Tasks + +- Address MSRV TODOs for 1.81 ([#781](https://github.com/alloy-rs/core/issues/781)) + +## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index d865acca3..469c7a23a 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/CHANGELOG.md @@ -5,6 +5,22 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 + +### Bug Fixes + +- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789)) + +### Dependencies + +- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780)) + +## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Miscellaneous Tasks + +- Release 0.8.9 + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Miscellaneous Tasks