From 8d8d22484408d9f071602ce398044b75a86c619e Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sun, 2 Feb 2025 11:49:26 +0100 Subject: [PATCH] chore: release 0.8.20 --- CHANGELOG.md | 4 ++++ Cargo.toml | 22 +++++++++++----------- crates/core/CHANGELOG.md | 4 ++++ crates/dyn-abi/CHANGELOG.md | 14 ++++++++++++++ crates/json-abi/CHANGELOG.md | 4 ++++ crates/primitives/CHANGELOG.md | 15 +++++++++++++++ crates/sol-macro-expander/CHANGELOG.md | 4 ++++ crates/sol-macro-input/CHANGELOG.md | 4 ++++ crates/sol-macro/CHANGELOG.md | 4 ++++ crates/sol-type-parser/CHANGELOG.md | 14 ++++++++++++++ crates/sol-types/CHANGELOG.md | 10 ++++++++++ crates/syn-solidity/CHANGELOG.md | 4 ++++ 12 files changed, 92 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 222490b35..77cd95cf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/Cargo.toml b/Cargo.toml index 747de03fe..53b934d88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.8.19" +version = "0.8.20" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -35,16 +35,16 @@ all = "warn" [workspace.dependencies] # workspace crates -alloy-core = { version = "0.8.19", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.8.19", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.8.19", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.8.19", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.8.19", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.8.19", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.8.19", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.8.19", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.8.19", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.8.19", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.8.20", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.8.20", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.8.20", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.8.20", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.8.20", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.8.20", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.8.20", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.8.20", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.8.20", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.8.20", 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 222490b35..77cd95cf5 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/dyn-abi/CHANGELOG.md b/crates/dyn-abi/CHANGELOG.md index c7d65993c..4f84aebbc 100644 --- a/crates/dyn-abi/CHANGELOG.md +++ b/crates/dyn-abi/CHANGELOG.md @@ -5,12 +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.20](https://github.com/alloy-rs/core/releases/tag/v0.8.20) - 2025-02-02 + +### Dependencies + +- [deps] Bump winnow 0.7 ([#862](https://github.com/alloy-rs/core/issues/862)) + +### Miscellaneous Tasks + +- Clippy ([#858](https://github.com/alloy-rs/core/issues/858)) + ## [0.8.19](https://github.com/alloy-rs/core/releases/tag/v0.8.19) - 2025-01-15 ### Documentation - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/json-abi/CHANGELOG.md b/crates/json-abi/CHANGELOG.md index fdfdf0ea2..2c2075fe8 100644 --- a/crates/json-abi/CHANGELOG.md +++ b/crates/json-abi/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [json-abi] Add Param.name() accessor ([#856](https://github.com/alloy-rs/core/issues/856)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index f01ff0071..ca302ae80 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -5,6 +5,17 @@ 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.20](https://github.com/alloy-rs/core/releases/tag/v0.8.20) - 2025-02-02 + +### Documentation + +- Add 0x to alloy-primitives readme example ([#861](https://github.com/alloy-rs/core/issues/861)) + +### Features + +- Add Sealed::as_sealed_ref ([#859](https://github.com/alloy-rs/core/issues/859)) +- Add Sealed::cloned ([#860](https://github.com/alloy-rs/core/issues/860)) + ## [0.8.19](https://github.com/alloy-rs/core/releases/tag/v0.8.19) - 2025-01-15 ### Documentation @@ -12,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) - Hide hex_literal export ([#849](https://github.com/alloy-rs/core/issues/849)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Bug Fixes diff --git a/crates/sol-macro-expander/CHANGELOG.md b/crates/sol-macro-expander/CHANGELOG.md index 3aea67ea8..8c73e021e 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 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/sol-macro-input/CHANGELOG.md b/crates/sol-macro-input/CHANGELOG.md index 5ca336176..09861139c 100644 --- a/crates/sol-macro-input/CHANGELOG.md +++ b/crates/sol-macro-input/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/sol-macro/CHANGELOG.md b/crates/sol-macro/CHANGELOG.md index 3e1aaa6c8..9e1267fee 100644 --- a/crates/sol-macro/CHANGELOG.md +++ b/crates/sol-macro/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/sol-type-parser/CHANGELOG.md b/crates/sol-type-parser/CHANGELOG.md index 80275dba6..1bc7f0ae5 100644 --- a/crates/sol-type-parser/CHANGELOG.md +++ b/crates/sol-type-parser/CHANGELOG.md @@ -5,12 +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.20](https://github.com/alloy-rs/core/releases/tag/v0.8.20) - 2025-02-02 + +### Dependencies + +- [deps] Bump winnow 0.7 ([#862](https://github.com/alloy-rs/core/issues/862)) + +### Miscellaneous Tasks + +- Clippy ([#858](https://github.com/alloy-rs/core/issues/858)) + ## [0.8.19](https://github.com/alloy-rs/core/releases/tag/v0.8.19) - 2025-01-15 ### Documentation - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/sol-types/CHANGELOG.md b/crates/sol-types/CHANGELOG.md index d4a4b3c21..9aec00bde 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.20](https://github.com/alloy-rs/core/releases/tag/v0.8.20) - 2025-02-02 + +### Documentation + +- Add 0x to alloy-primitives readme example ([#861](https://github.com/alloy-rs/core/issues/861)) + ## [0.8.19](https://github.com/alloy-rs/core/releases/tag/v0.8.19) - 2025-01-15 ### Documentation @@ -15,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [sol-types] Improve ABI decoding error messages ([#851](https://github.com/alloy-rs/core/issues/851)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks diff --git a/crates/syn-solidity/CHANGELOG.md b/crates/syn-solidity/CHANGELOG.md index 86d6cbc6a..4c136392a 100644 --- a/crates/syn-solidity/CHANGELOG.md +++ b/crates/syn-solidity/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Enable some useful rustdoc features on docs.rs ([#850](https://github.com/alloy-rs/core/issues/850)) +### Miscellaneous Tasks + +- Release 0.8.19 + ## [0.8.18](https://github.com/alloy-rs/core/releases/tag/v0.8.18) - 2025-01-04 ### Miscellaneous Tasks