From 3569cfcdd665a0d82d6af3411cd286bc430170cd Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Thu, 25 Jan 2024 18:36:21 +0100 Subject: [PATCH] chore: release 0.6.1 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.toml | 16 ++++++++-------- 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d41d8a5add..d1b76b67bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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.6.1](https://github.com/alloy-rs/core/releases/tag/v0.6.1) - 2024-01-25 + +### Bug Fixes + +- Deserialize missing state mutability as non payable ([#488](https://github.com/alloy-rs/core/issues/488)) + +### Documentation + +- Remove stray list element ([#500](https://github.com/alloy-rs/core/issues/500)) +- Fixes ([#498](https://github.com/alloy-rs/core/issues/498)) + +### Features + +- [`primitives`] Add `y_parity_byte_non_eip155` to `Parity` ([#499](https://github.com/alloy-rs/core/issues/499)) +- Add constructorCall to `sol!` ([#493](https://github.com/alloy-rs/core/issues/493)) +- [primitives] Add `Address::from_private_key` ([#483](https://github.com/alloy-rs/core/issues/483)) + +### Miscellaneous Tasks + +- Add SECURITY.md ([#494](https://github.com/alloy-rs/core/issues/494)) +- [primitives] Pass B256 by reference in Signature methods ([#487](https://github.com/alloy-rs/core/issues/487)) +- Include path in error ([#486](https://github.com/alloy-rs/core/issues/486)) +- Improve unlinked bytecode deserde error ([#484](https://github.com/alloy-rs/core/issues/484)) + +### Testing + +- Don't print constructors for Solc tests ([#501](https://github.com/alloy-rs/core/issues/501)) +- Parity roundtripping ([#497](https://github.com/alloy-rs/core/issues/497)) + ## [0.6.0](https://github.com/alloy-rs/core/releases/tag/v0.6.0) - 2024-01-10 ### Bug Fixes @@ -32,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - Bless tests ([#478](https://github.com/alloy-rs/core/issues/478)) - Clippy uninlined_format_args, use_self ([#475](https://github.com/alloy-rs/core/issues/475)) - Touch up UDVT expansion ([#473](https://github.com/alloy-rs/core/issues/473)) diff --git a/Cargo.toml b/Cargo.toml index a086a5b0d7..a16ae7ef2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.6.0" +version = "0.6.1" edition = "2021" rust-version = "1.65" authors = ["Alloy Contributors"] @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # workspace crates -alloy-dyn-abi = { version = "0.6.0", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.6.0", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.6.0", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.6.0", path = "crates/sol-macro", default-features = false } -alloy-sol-type-parser = { version = "0.6.0", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.6.0", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.6.0", path = "crates/syn-solidity", default-features = false } +alloy-dyn-abi = { version = "0.6.1", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.6.1", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.6.1", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.6.1", path = "crates/sol-macro", default-features = false } +alloy-sol-type-parser = { version = "0.6.1", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.6.1", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.6.1", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] }