From 0f5afd0a1d6da0151ae69fdb93809eba072d1324 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:50:52 +0100 Subject: [PATCH] chore: release 0.5.2 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 16 ++++++++-------- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13681b7c1..625c1a802 100644 --- a/CHANGELOG.md +++ b/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.5.2](https://github.com/alloy-rs/core/releases/tag/v0.5.2) - 2023-12-01 + +### Bug Fixes + +- [dyn-abi] Fixed arrays coerce_str ([#442](https://github.com/alloy-rs/core/issues/442)) + +### Testing + +- Add some regression tests ([#443](https://github.com/alloy-rs/core/issues/443)) + ## [0.5.1](https://github.com/alloy-rs/core/releases/tag/v0.5.1) - 2023-11-30 ### Bug Fixes - Fix public leak ([#437](https://github.com/alloy-rs/core/issues/437)) +### Miscellaneous Tasks + +- Release 0.5.1 + ### Other - Re-enable MSRV all features check ([#439](https://github.com/alloy-rs/core/issues/439)) diff --git a/Cargo.toml b/Cargo.toml index c856f4c83..2f7521ef8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.5.1" +version = "0.5.2" 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.5.1", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.5.1", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.5.1", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.5.1", path = "crates/sol-macro", default-features = false } -alloy-sol-type-parser = { version = "0.5.1", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.5.1", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.5.1", path = "crates/syn-solidity", default-features = false } +alloy-dyn-abi = { version = "0.5.2", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.5.2", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.5.2", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.5.2", path = "crates/sol-macro", default-features = false } +alloy-sol-type-parser = { version = "0.5.2", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.5.2", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.5.2", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] }