25 releases
new 0.0.25 | Nov 4, 2024 |
---|---|
0.0.24 | Oct 9, 2024 |
0.0.23 | Aug 29, 2024 |
0.0.21 | Jul 27, 2024 |
0.0.6 | Apr 8, 2024 |
#279 in Cargo plugins
254 downloads per month
33KB
732 lines
Release management for the oxc project
cargo release-oxc
Usage: cargo-release-oxc COMMAND ...
Available options:
-h, --help Prints help information
Available commands:
update Generate CHANGELOG.md and bump versions for all published packages.
changelog Generate changelog summary.
regenerate-changelogs Regenerate CHANGELOG.md for all published packages.
publish Publish all `versioned_files` specified in `oxc_release.toml`.
Available options:
--release=NAME Select the release specified in `oxc_release.toml`.
--dry-run Run `cargo publish` with `--dry-run`
Specify oxc_release.toml
[[releases]]
name = "crates"
versioned_files = [
"Cargo.toml",
"npm/oxc-parser/package.json",
"npm/oxc-transform/package.json",
"wasm/parser/package.json",
]
[[releases]]
name = "oxlint"
versioned_files = [
"apps/oxlint/Cargo.toml",
"crates/oxc_linter/Cargo.toml",
"editors/vscode/package.json",
"npm/oxlint/package.json",
]
Output
Saves two files to ./target
:
- version:
./target/OXC_VERSION
- changelog:
./target/OXC_CHANGELOG
Dependencies
~36–69MB
~1M SLoC