From 9b7d6681203c0a242799b1f296c25915e6247faf Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:48:17 +0200 Subject: [PATCH] chore: release 0.3.0 (#207) --- Cargo.toml | 16 ++++++++-------- crates/sol-type-parser/Cargo.toml | 2 +- release.toml | 3 +-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c780b19bb..65d92a657 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.2.0" +version = "0.3.0" 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.2.0", path = "crates/dyn-abi", default-features = false } -alloy-json-abi = { version = "0.2.0", path = "crates/json-abi", default-features = false } -alloy-primitives = { version = "0.2.0", path = "crates/primitives", default-features = false } -alloy-sol-macro = { version = "0.2.0", path = "crates/sol-macro", default-features = false } -alloy-sol-type-parser = { version = "0.2.0", path = "crates/sol-type-parser", default-features = false } -alloy-sol-types = { version = "0.2.0", path = "crates/sol-types", default-features = false } -syn-solidity = { version = "0.2.0", path = "crates/syn-solidity", default-features = false } +alloy-dyn-abi = { version = "0.3.0", path = "crates/dyn-abi", default-features = false } +alloy-json-abi = { version = "0.3.0", path = "crates/json-abi", default-features = false } +alloy-primitives = { version = "0.3.0", path = "crates/primitives", default-features = false } +alloy-sol-macro = { version = "0.3.0", path = "crates/sol-macro", default-features = false } +alloy-sol-type-parser = { version = "0.3.0", path = "crates/sol-type-parser", default-features = false } +alloy-sol-types = { version = "0.3.0", path = "crates/sol-types", default-features = false } +syn-solidity = { version = "0.3.0", path = "crates/syn-solidity", default-features = false } # serde serde = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/crates/sol-type-parser/Cargo.toml b/crates/sol-type-parser/Cargo.toml index b1e3d40ed..142ce9183 100644 --- a/crates/sol-type-parser/Cargo.toml +++ b/crates/sol-type-parser/Cargo.toml @@ -21,4 +21,4 @@ rustdoc-args = ["--cfg", "docsrs"] [features] default = ["std"] -std = [] \ No newline at end of file +std = [] diff --git a/release.toml b/release.toml index fff2d1f96..4d5a4c8ff 100644 --- a/release.toml +++ b/release.toml @@ -1,6 +1,5 @@ # Configuration for `cargo-release` # See -# Release using `cargo release --workspace` -allow-branch = ["main"] shared-version = true +pre-release-commit-message = "chore: release {{version}}" tag-prefix = "" # tag only once instead of per every crate