26 releases

new 0.0.26 Feb 10, 2025
0.0.25 Nov 4, 2024
0.0.24 Oct 9, 2024
0.0.23 Aug 29, 2024
0.0.6 Apr 8, 2024

#281 in Cargo plugins

Download history 3/week @ 2024-10-26 151/week @ 2024-11-02 17/week @ 2024-11-09 11/week @ 2024-11-16 8/week @ 2024-11-23 1/week @ 2024-11-30 28/week @ 2024-12-07 6/week @ 2024-12-14 5/week @ 2025-02-01 98/week @ 2025-02-08

103 downloads per month

MIT license

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–70MB
~1M SLoC