From 2a17773cccfb725be394892d5ce1b9002709fb43 Mon Sep 17 00:00:00 2001 From: Cass Fridkin Date: Fri, 2 Sep 2022 07:32:47 -0500 Subject: [PATCH] configure cargo-release --- Cargo.toml | 5 +++++ envcrypt-macro/Cargo.toml | 4 +++- envcrypt-test/Cargo.toml | 6 +++++- envcrypt/Cargo.toml | 3 ++- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bddc1ce..7a55901 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,7 @@ [workspace] members = ["envcrypt", "envcrypt-macro", "envcrypt-test"] + +[workspace.metadata.release] +consolidate-commits = true +consolidate-pushes = true +shared-version = true diff --git a/envcrypt-macro/Cargo.toml b/envcrypt-macro/Cargo.toml index ce323df..d9bc179 100644 --- a/envcrypt-macro/Cargo.toml +++ b/envcrypt-macro/Cargo.toml @@ -5,7 +5,9 @@ license = "MIT OR Apache-2.0" name = "envcrypt-macro" version = "0.2.0" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[package.metadata.release] +shared-version = true +tag = false [lib] path = "src/lib.rs" diff --git a/envcrypt-test/Cargo.toml b/envcrypt-test/Cargo.toml index 2a093da..5e7554f 100644 --- a/envcrypt-test/Cargo.toml +++ b/envcrypt-test/Cargo.toml @@ -3,7 +3,11 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "envcrypt-test" publish = false -version = "0.0.0" +version = "0.2.0" + +[package.metadata.release] +shared-version = true +tag = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/envcrypt/Cargo.toml b/envcrypt/Cargo.toml index a1bb358..5caa6d1 100644 --- a/envcrypt/Cargo.toml +++ b/envcrypt/Cargo.toml @@ -16,7 +16,8 @@ readme = "../README.md" repository = "https://github.com/caass/envcrypt-rs" version = "0.2.0" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[package.metadata.release] +shared-version = true [dependencies] envcrypt-macro = { path = "../envcrypt-macro", version = "0.2.0" }