diff --git a/CHANGELOG.md b/CHANGELOG.md index e603179bf..4c34a9e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,36 @@ 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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint `alloy-primitives` ([#756](https://github.com/alloy-rs/core/issues/756)) +- Fix lint `alloy-json-abi` ([#757](https://github.com/alloy-rs/core/issues/757)) +- Fix lint `alloy-dyn-abi` ([#758](https://github.com/alloy-rs/core/issues/758)) +- Fix lint alloy-sol-types ([#761](https://github.com/alloy-rs/core/issues/761)) +- Fix lint `alloy-sol-macro-expander` ([#760](https://github.com/alloy-rs/core/issues/760)) + +### Dependencies + +- [deps] Bump hashbrown to 0.15 ([#753](https://github.com/alloy-rs/core/issues/753)) + +### Features + +- Add `Default` for `Sealed` ([#755](https://github.com/alloy-rs/core/issues/755)) +- [primitives] Add and use foldhash as default hasher ([#763](https://github.com/alloy-rs/core/issues/763)) + +### Miscellaneous Tasks + +- [meta] Update CODEOWNERS +- Remove a stabilized impl_core function + +### Other + +- Derive `Arbitrary` for `Sealed` ([#762](https://github.com/alloy-rs/core/issues/762)) +- Derive `Deref` for `Sealed` ([#759](https://github.com/alloy-rs/core/issues/759)) +- Add conversion `TxKind` -> `Option
` ([#750](https://github.com/alloy-rs/core/issues/750)) + ## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 ### Bug Fixes @@ -13,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.5 - [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 diff --git a/Cargo.toml b/Cargo.toml index 3b7332188..dafd80ab0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.5" +version = "0.8.6" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -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 } +alloy-core = { version = "0.8.6", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.6", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.6", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.6", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.6", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.6", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.6", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.6", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.6", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.6", 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 491676d47..a25705617 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Features diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index b0cfd2c89..abc97975f 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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint `alloy-dyn-abi` ([#758](https://github.com/alloy-rs/core/issues/758)) + +### Miscellaneous Tasks + +- Remove a stabilized impl_core function + +## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Features diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index b06d16b01..8b56ebd55 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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint `alloy-json-abi` ([#757](https://github.com/alloy-rs/core/issues/757)) + +## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 0f52723fb..75eac177f 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,6 +5,27 @@ 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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint `alloy-primitives` ([#756](https://github.com/alloy-rs/core/issues/756)) + +### Dependencies + +- [deps] Bump hashbrown to 0.15 ([#753](https://github.com/alloy-rs/core/issues/753)) + +### Features + +- Add `Default` for `Sealed` ([#755](https://github.com/alloy-rs/core/issues/755)) +- [primitives] Add and use foldhash as default hasher ([#763](https://github.com/alloy-rs/core/issues/763)) + +### Other + +- Derive `Arbitrary` for `Sealed` ([#762](https://github.com/alloy-rs/core/issues/762)) +- Derive `Deref` for `Sealed` ([#759](https://github.com/alloy-rs/core/issues/759)) +- Add conversion `TxKind` -> `Option
` ([#750](https://github.com/alloy-rs/core/issues/750)) + ## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 ### Bug Fixes @@ -13,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.5 - [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 diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index caec0587e..f0c24dbd6 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint `alloy-sol-macro-expander` ([#760](https://github.com/alloy-rs/core/issues/760)) + +## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 811dc82e9..7b6ad0d94 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index e7e89025b..3d86761c4 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index 026b84f56..a70abf39b 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Features diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index 5bd99ce7d..0e92ed7b3 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06 + +### Bug Fixes + +- Fix lint alloy-sol-types ([#761](https://github.com/alloy-rs/core/issues/761)) + +### Miscellaneous Tasks + +- Remove a stabilized impl_core function + +## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index f36624170..d694d2212 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.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25 + +### Miscellaneous Tasks + +- Release 0.8.5 + ## [0.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25 ### Bug Fixes