Skip to content

Commit 2a17773

Browse files
author
Cass Fridkin
committed
configure cargo-release
1 parent 9340148 commit 2a17773

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
[workspace]
22
members = ["envcrypt", "envcrypt-macro", "envcrypt-test"]
3+
4+
[workspace.metadata.release]
5+
consolidate-commits = true
6+
consolidate-pushes = true
7+
shared-version = true

envcrypt-macro/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ license = "MIT OR Apache-2.0"
55
name = "envcrypt-macro"
66
version = "0.2.0"
77

8-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
[package.metadata.release]
9+
shared-version = true
10+
tag = false
911

1012
[lib]
1113
path = "src/lib.rs"

envcrypt-test/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ edition = "2021"
33
license = "MIT OR Apache-2.0"
44
name = "envcrypt-test"
55
publish = false
6-
version = "0.0.0"
6+
version = "0.2.0"
7+
8+
[package.metadata.release]
9+
shared-version = true
10+
tag = false
711

812
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
913

envcrypt/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ readme = "../README.md"
1616
repository = "https://github.com/caass/envcrypt-rs"
1717
version = "0.2.0"
1818

19-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
19+
[package.metadata.release]
20+
shared-version = true
2021

2122
[dependencies]
2223
envcrypt-macro = { path = "../envcrypt-macro", version = "0.2.0" }

0 commit comments

Comments
 (0)