From 0087024da731be15b834e1056429faa63de4ba89 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 26 Nov 2024 14:58:45 +0100 Subject: [PATCH] chore: release 0.8.13 (#813) --- CHANGELOG.md | 32 +++++++++++++++++++++++++- Cargo.toml | 22 +++++++++--------- crates/core/CHANGELOG.md | 6 +++++ crates/dyn-abi/CHANGELOG.md | 12 ++++++++++ crates/json-abi/CHANGELOG.md | 6 +++++ crates/primitives/CHANGELOG.md | 20 +++++++++++++++- crates/sol-macro-expander/CHANGELOG.md | 16 +++++++++++++ crates/sol-macro-input/CHANGELOG.md | 6 +++++ crates/sol-macro/CHANGELOG.md | 6 +++++ crates/sol-type-parser/CHANGELOG.md | 6 +++++ crates/sol-types/CHANGELOG.md | 12 ++++++++++ crates/syn-solidity/CHANGELOG.md | 12 ++++++++++ 12 files changed, 143 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beaec8bce..f46a0c17a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,42 @@ 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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### Bug Fixes + +- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812)) + +### 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)) + +### 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 @@ -18,7 +49,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features -- 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)) diff --git a/Cargo.toml b/Cargo.toml index 5c9fb8c1a..fab386ad9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.12" +version = "0.8.13" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] @@ -39,16 +39,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.12", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.12", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.12", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.12", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.12", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.12", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.12", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.12", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.12", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.12", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.13", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.13", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.13", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.13", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.13", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.13", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.13", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.13", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.13", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.13", 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 ed2bc48f1..dd9157fe5 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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 f07390cbb..293a3c250 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-abi/CHANGELOG.md @@ -5,10 +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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### Features + +- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809)) + ## [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 f10df8555..4f0141ff6 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [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)) diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 847e3dd48..a9f6029cd 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,16 +5,34 @@ 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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### 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)) + +### 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)) + +### Features + - Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791)) ### Miscellaneous Tasks diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 5551fb448..dc6705c41 100644 --- a/crates/sol-macro-expander/CHANGELOG.md +++ b/crates/sol-macro-expander/CHANGELOG.md @@ -5,10 +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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### Bug Fixes + +- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812)) + +### Dependencies + +- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808)) + ## [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 369de5faf..323d09c7a 100644 --- a/crates/sol-macro-input/CHANGELOG.md +++ b/crates/sol-macro-input/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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 df80409e5..d6beda15c 100644 --- a/crates/sol-macro/CHANGELOG.md +++ b/crates/sol-macro/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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 a3e81ed60..57c662e95 100644 --- a/crates/sol-type-parser/CHANGELOG.md +++ b/crates/sol-type-parser/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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 0e174c9f5..10f0b0e0b 100644 --- a/crates/sol-types/CHANGELOG.md +++ b/crates/sol-types/CHANGELOG.md @@ -5,10 +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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### Bug Fixes + +- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812)) + ## [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 d110d079c..2a5628622 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/CHANGELOG.md @@ -5,10 +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.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26 + +### Dependencies + +- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808)) + ## [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