diff --git a/CHANGELOG.md b/CHANGELOG.md index 01cc5132f..b2925a2fd 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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Bug Fixes + +- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727)) + +### Documentation + +- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726)) + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### 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.1 - Clippy - Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723)) diff --git a/Cargo.toml b/Cargo.toml index c6c1fd2af..5941f4f14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.1" +version = "0.8.2" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.1", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.1", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.1", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.1", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.1", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.1", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.1", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.1", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.1", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.1", path = "crates/syn-solidity", default-features = false } +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 } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 36d80dfae..c75980d68 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 +### Miscellaneous Tasks + +- Release 0.8.1 + ### Refactor - Remove `Signature` generic ([#719](https://github.com/alloy-rs/core/issues/719)) diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index 36c7c8135..9c2bc2b70 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Bug Fixes + +- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727)) + +## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.1 + ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 ### Bug Fixes diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index 6d9487bd1..8b65b1b50 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump MSRV to 1.79 ([#712](https://github.com/alloy-rs/core/issues/712)) +### Miscellaneous Tasks + +- Release 0.8.1 + ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 ### Bug Fixes diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index e411d60d8..8cbc775b7 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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06 + +### Bug Fixes + +- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727)) + +### Documentation + +- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726)) + ## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 ### Bug Fixes @@ -17,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Revert "chore(deps): bump derive_more to 1.0" - [deps] Bump derive_more to 1.0 +### Miscellaneous Tasks + +- Release 0.8.1 + ### Performance - [primitives] Improve checksum algorithm ([#713](https://github.com/alloy-rs/core/issues/713)) diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 132dc90df..8fb9a1313 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.1 - Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723)) ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 89f3ebefe..ff5918e71 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.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.1 + ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 ### Features diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index a62709d20..8a17b2af0 100644 --- a/crates/sol-macro/CHANGELOG.md +++ b/crates/sol-macro/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.1 - Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723)) ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index 4be65cdf3..d1e10e5c6 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 - [sol-type-parser] Winnow std error ([#720](https://github.com/alloy-rs/core/issues/720)) +### Miscellaneous Tasks + +- Release 0.8.1 + ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 ### Bug Fixes diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index e948cf3ba..6da50553a 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.1 - Clippy ### Testing diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index f730f7a55..21c69d742 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.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06 + +### Miscellaneous Tasks + +- Release 0.8.1 + ## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21 ### Miscellaneous Tasks