Skip to content

Commit fc5fb03

Browse files
committed
simplify cargo release flags via crate-ci/cargo-release#253
1 parent 7a259a0 commit fc5fb03

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

examples/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ authors = [
99
publish = false
1010
edition = "2018"
1111

12+
[package.metadata.release]
13+
disable-release = true
14+
1215
[features]
1316
default = ["native-tls", "schema", "kubederive", "ws"]
1417
kubederive = ["kube/derive"] # by default import kube-derive with its default features

release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Release process:
2-
# 1. cargo release minor --exclude examples --exclude tests
2+
# 1. cargo release minor
33
# 2. verify that all crates are bumped and versions are in-line before proceeding
44
# 3a. await publishing - failures can happen due to still https://github.com/sunng87/cargo-release/issues/224
55
# 3b. fix failures from 3a (resume publishing manually, cd into dir, cargo publish, wait, continue for next in line)

tests/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ authors = ["clux <[email protected]>"]
55
publish = false
66
edition = "2018"
77

8+
[package.metadata.release]
9+
disable-release = true
10+
811
[[bin]]
912
name = "dapp"
1013
path = "dapp.rs"

0 commit comments

Comments
 (0)