Skip to content

Commit

Permalink
tools: replace release script with cargo-release
Browse files Browse the repository at this point in the history
e.g.
```
cargo release --no-push --no-publish -x minor -p quiche
```

This can also be used for other crates in the repo by providing `-p
<crate>`.
  • Loading branch information
ghedo committed Jan 24, 2025
1 parent 7d686e1 commit 0ef79d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
members = [ "apps", "h3i", "octets", "qlog", "quiche" ]
exclude = [ "fuzz", "tools/http3_test" ]

[workspace.metadata.release]
pre-release-commit-message = "{{crate_name}}: release {{version}}"
consolidate-commits = false
tag-name = "{{version}}"
tag-message = "{{crate_name}} {{version}}"
publish = false

[profile.bench]
debug = true

Expand Down
22 changes: 0 additions & 22 deletions tools/release.sh

This file was deleted.

0 comments on commit 0ef79d8

Please sign in to comment.