Skip to content

Commit a76bcf7

Browse files
committed
feat: add cargo-release configuration
- Add release.toml configuration file for cargo-release - Configure workspace-wide release settings - Enable automatic git operations (commit, tag, push) - Set up proper publishing and verification settings
1 parent edc2922 commit a76bcf7

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

release.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[workspace]
2+
# Process all packages in the workspace
3+
# We have vtcode and vtcode-core
4+
5+
[package.vtcode]
6+
# Main package configuration
7+
publish = true
8+
9+
[package.vtcode-core]
10+
# Core library configuration
11+
publish = true
12+
13+
[git]
14+
# Git configuration
15+
commit = true
16+
tag = true
17+
push = true
18+
19+
[hooks]
20+
# Pre-release hooks
21+
pre-release = []
22+
23+
# Post-release hooks
24+
post-release = []
25+
26+
[publish]
27+
# Publishing configuration
28+
registry = "crates.io"
29+
verify = true
30+
31+
[release]
32+
# General release settings
33+
shared-version = true
34+
consolidate-commits = true
35+
allow-branch = ["main"]

0 commit comments

Comments
 (0)