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

Download history 9/week @ 2024-07-08 294/week @ 2024-07-22 38/week @ 2024-07-29 142/week @ 2024-08-05 18/week @ 2024-08-12 170/week @ 2024-08-26 19/week @ 2024-09-02 14/week @ 2024-09-09 1/week @ 2024-09-16 85/week @ 2024-09-23 209/week @ 2024-10-07 34/week @ 2024-10-14 8/week @ 2024-10-21

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