diff --git a/CHANGELOG.md b/CHANGELOG.md index 4109d6de2..01f5770a8 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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Bug Fixes + +- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777)) + +### Features + +- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773)) + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Bug Fixes @@ -17,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add logs_bloom ([#768](https://github.com/alloy-rs/core/issues/768)) +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/Cargo.toml b/Cargo.toml index 1d2ed00a5..477ca5a71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.8" +version = "0.8.9" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.8", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.8", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.8", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.8", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.8", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.8", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.8", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.8", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.8", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.8", path = "crates/syn-solidity", default-features = false } +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 } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 261270cb4..9f13acbbe 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Bug Fixes + +- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777)) + +## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index c0851c12f..ddeebadd7 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index cff7accab..27e18661e 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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 854cb2451..e64ca4555 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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21 + +### Bug Fixes + +- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777)) + +### Features + +- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773)) + ## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 ### Bug Fixes @@ -16,6 +26,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add logs_bloom ([#768](https://github.com/alloy-rs/core/issues/768)) +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 4b585f8b5..04f732941 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 - [alloy-sol-macro] Allow clippy::pub_underscore_fields on `sol!` output ([#770](https://github.com/alloy-rs/core/issues/770)) +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 3d4898137..9ce9199df 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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index a757edafb..c9f820cbd 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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index 1da96567d..b1d31fb3d 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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index 55f984d5b..1704690c4 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index a21db1e6e..d865acca3 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14 + +### Miscellaneous Tasks + +- Release 0.8.8 + ## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08 ### Miscellaneous Tasks