diff --git a/CHANGELOG.md b/CHANGELOG.md index f7cb603..1237580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.10](https://github.com/oxc-project/cargo-release-oxc/compare/v0.0.9...v0.0.10) - 2024-06-03 + +### Added +- calculate next version from changelog +- `update` print version +- remove cargo check in update command +- customize tag prefix + +### Other +- refactor out versioning crates +- alias r in justfile + ## [0.0.9](https://github.com/oxc-project/cargo-release-oxc/compare/v0.0.8...v0.0.9) - 2024-06-02 ### Added diff --git a/Cargo.lock b/Cargo.lock index 0063fe0..5d93173 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,7 +157,7 @@ dependencies = [ [[package]] name = "cargo-release-oxc" -version = "0.0.9" +version = "0.0.10" dependencies = [ "anyhow", "bpaf", diff --git a/Cargo.toml b/Cargo.toml index 1616f11..75b135a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-release-oxc" -version = "0.0.9" +version = "0.0.10" edition = "2021" description = "Oxc release management" authors = ["Boshen "]