From 1960dcedff984cd5089c16bf9bc4f33cadca7817 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:54:51 +0100 Subject: [PATCH] chore: release 0.8.16 --- CHANGELOG.md | 64 +++++++++++++++++++++++--- Cargo.toml | 22 ++++----- crates/core/CHANGELOG.md | 22 +++++++++ crates/dyn-abi/CHANGELOG.md | 26 +++++++++++ crates/json-abi/CHANGELOG.md | 26 ++++++++++- crates/primitives/CHANGELOG.md | 46 ++++++++++++++++-- crates/sol-macro-expander/CHANGELOG.md | 14 ++++++ crates/sol-macro-input/CHANGELOG.md | 16 +++++++ crates/sol-macro/CHANGELOG.md | 16 +++++++ crates/sol-type-parser/CHANGELOG.md | 16 +++++++ crates/sol-types/CHANGELOG.md | 22 +++++++++ crates/syn-solidity/CHANGELOG.md | 22 +++++++++ 12 files changed, 288 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 692f708b3..af2a1cf84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,35 @@ 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Bug Fixes + +- Re-enable foldhash on zkvm ([#833](https://github.com/alloy-rs/core/issues/833)) +- Allow non-boolean v values for PrimitiveSignature ([#832](https://github.com/alloy-rs/core/issues/832)) +- [syn-solidity] Correctly parse invalid bytes* etc as custom ([#830](https://github.com/alloy-rs/core/issues/830)) + +### Features + +- [dyn-abi] Support parse scientific number ([#835](https://github.com/alloy-rs/core/issues/835)) +- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827)) + +### Miscellaneous Tasks + +- Clippy ([#834](https://github.com/alloy-rs/core/issues/834)) +- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825)) +- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824)) +- [primitives] Remove rustc-hash workaround ([#822](https://github.com/alloy-rs/core/issues/822)) + +### Other + +- Move deny to ci ([#821](https://github.com/alloy-rs/core/issues/821)) + ## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 ### Miscellaneous Tasks +- Release 0.8.15 - Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819)) - AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820)) - Update release.toml ([#817](https://github.com/alloy-rs/core/issues/817)) @@ -36,35 +61,60 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug Fixes - [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812)) -- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805)) -- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801)) ### Dependencies - Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808)) +### Features + +- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809)) + +### Miscellaneous Tasks + +- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +### Other + +- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Bug Fixes + +- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805)) + +### Features + +- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804)) + +### Miscellaneous Tasks + +- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Bug Fixes + +- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801)) + ### Documentation - Update ethers-rs README note ([#798](https://github.com/alloy-rs/core/issues/798)) ### Features -- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809)) -- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804)) - [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797)) - Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791)) ### Miscellaneous Tasks -- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) -- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) - [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794)) - [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793)) ### Other -- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810)) - Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800)) - Add success job ([#795](https://github.com/alloy-rs/core/issues/795)) diff --git a/Cargo.toml b/Cargo.toml index 492e22943..3007ea58b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.15" +version = "0.8.16" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.15", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.15", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.15", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.15", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.15", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.15", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.15", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.15", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.15", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.15", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.16", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.16", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.16", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.16", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.16", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.16", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.16", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.16", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.16", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.16", 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 3f7aa9458..1c9afe409 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Features + +- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827)) + +## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Miscellaneous Tasks @@ -16,7 +28,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index c9d39ec63..fe641d7d5 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Features + +- [dyn-abi] Support parse scientific number ([#835](https://github.com/alloy-rs/core/issues/835)) + +### Miscellaneous Tasks + +- Clippy ([#834](https://github.com/alloy-rs/core/issues/834)) + +## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Dependencies @@ -28,7 +44,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index 451692f37..7d4f689a7 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Miscellaneous Tasks + +- Clippy ([#834](https://github.com/alloy-rs/core/issues/834)) + +## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Miscellaneous Tasks @@ -13,14 +25,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 +### Miscellaneous Tasks + +- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + ### Features - [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797)) ### Miscellaneous Tasks -- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) -- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) - [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794)) diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 0c1783e93..8bb32cd4b 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,10 +5,29 @@ 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Bug Fixes + +- Re-enable foldhash on zkvm ([#833](https://github.com/alloy-rs/core/issues/833)) +- Allow non-boolean v values for PrimitiveSignature ([#832](https://github.com/alloy-rs/core/issues/832)) + +### Features + +- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827)) + +### Miscellaneous Tasks + +- Clippy ([#834](https://github.com/alloy-rs/core/issues/834)) +- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825)) +- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824)) +- [primitives] Remove rustc-hash workaround ([#822](https://github.com/alloy-rs/core/issues/822)) + ## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 ### Miscellaneous Tasks +- Release 0.8.15 - Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819)) - AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820)) @@ -28,25 +47,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 +### Miscellaneous Tasks + +- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +### Other + +- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + ### Bug Fixes - `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805)) -- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801)) ### Features - Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804)) -- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791)) ### Miscellaneous Tasks -- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Bug Fixes + +- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801)) + +### Features + +- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791)) + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ### Other -- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810)) - Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800)) ### Performance diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index e81a51fdf..79437540b 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 +### Miscellaneous Tasks + +- Release 0.8.15 + ### Other - Remove unsafe code from macro expansions ([#818](https://github.com/alloy-rs/core/issues/818)) @@ -30,7 +34,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 5a2fdc649..81c9dce2c 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.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Miscellaneous Tasks @@ -16,7 +22,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index 40ef472f1..ab20fd1c4 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.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Miscellaneous Tasks @@ -16,7 +22,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index 4f5338451..c99cd7d7c 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.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Dependencies @@ -20,7 +26,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index de9f2be0a..df77bfa12 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Bug Fixes + +- [syn-solidity] Correctly parse invalid bytes* etc as custom ([#830](https://github.com/alloy-rs/core/issues/830)) + +## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Dependencies @@ -28,7 +40,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28 diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index 2cd45e248..1cf8c5c07 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01 + +### Bug Fixes + +- [syn-solidity] Correctly parse invalid bytes* etc as custom ([#830](https://github.com/alloy-rs/core/issues/830)) + +## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09 + +### Miscellaneous Tasks + +- Release 0.8.15 + ## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28 ### Dependencies @@ -24,7 +36,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813)) + +## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12 + +### Miscellaneous Tasks + - Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806)) + +## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05 + +### Miscellaneous Tasks + - Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803)) ## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28