Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ publish = true
shared-version = "workspace"

# Allow publishing more than 5 new crates in one run (first-time publishes)
rate-limit = 20
[rate-limit]
new-packages = 20
existing-packages = 20

# Let cargo-release verify the tree is clean before proceeding
pre-release-commit-message = "chore: release {{version}}"
Comment on lines +32 to 37
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Defining [rate-limit] here turns all subsequent keys (e.g. pre-release-commit-message, tag-message, tag-name) into fields of the rate-limit table in TOML, which likely breaks cargo-release config parsing. Use dotted keys (rate-limit.new-packages, rate-limit.existing-packages), an inline table (rate-limit = { ... }), or move the [rate-limit] table to the end of the file so later settings remain top-level.

Copilot uses AI. Check for mistakes.
Expand Down
Loading