From fe485e1a720cdb2e301bf3b7948a50cfbe6cb9dd Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 14 May 2024 22:16:12 +0300 Subject: [PATCH] chore: release 0.7.4 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 22 +++++++++++----------- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f8cba3d8..c84193321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,15 @@ 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.7.3](https://github.com/alloy-rs/core/releases/tag/v0.7.3) - 2024-05-14 +## [0.7.4](https://github.com/alloy-rs/core/releases/tag/v0.7.4) - 2024-05-14 + +### Bug Fixes + +- [sol-macro] Json feature ([#629](https://github.com/alloy-rs/core/issues/629)) ### Miscellaneous Tasks +- Release 0.7.3 - Fix dyn abi - Release 0.7.3 diff --git a/Cargo.toml b/Cargo.toml index b6268267e..0b5923625 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"] resolver = "2" [workspace.package] -version = "0.7.3" +version = "0.7.4" edition = "2021" rust-version = "1.65" authors = ["Alloy Contributors"] @@ -18,16 +18,16 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # workspace crates -alloy-core = { version = "0.7.3", path = "crates/core", default-features = false } -alloy-dyn-abi = { version = "0.7.3", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.7.3", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.7.3", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.7.3", path = "crates/sol-macro", default-features = false } -alloy-sol-macro-input = { version = "0.7.3", path = "crates/sol-macro-input", default-features = false } -alloy-sol-macro-expander = { version = "0.7.3", path = "crates/sol-macro-expander", default-features = false } -alloy-sol-type-parser = { version = "0.7.3", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.7.3", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.7.3", path = "crates/syn-solidity", default-features = false } +alloy-core = { version = "0.7.4", path = "crates/core", default-features = false } +alloy-dyn-abi = { version = "0.7.4", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.7.4", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.7.4", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.7.4", path = "crates/sol-macro", default-features = false } +alloy-sol-macro-input = { version = "0.7.4", path = "crates/sol-macro-input", default-features = false } +alloy-sol-macro-expander = { version = "0.7.4", path = "crates/sol-macro-expander", default-features = false } +alloy-sol-type-parser = { version = "0.7.4", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.7.4", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.7.4", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] }