From ba80878b52d91cb79ccea89d8244cabfe69f3fde Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Fri, 18 Apr 2025 08:04:41 -0600 Subject: [PATCH] fix: actually update version number --- Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASING.md | 11 ++++++++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d344d2..5fcbb10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3450,7 +3450,7 @@ dependencies = [ [[package]] name = "rustac" -version = "0.6.0-rc.0" +version = "0.6.0" dependencies = [ "clap", "geoarrow", diff --git a/Cargo.toml b/Cargo.toml index 71c356b..a339915 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustac" -version = "0.6.0-rc.0" +version = "0.6.0" edition = "2021" publish = false diff --git a/RELEASING.md b/RELEASING.md index 5545557..d6744b8 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,3 +1,12 @@ # Releasing -TODO +1. Determine the next version. + We follow (to the best of our ability) [semantic versioning](https://semver.org/). +2. Create a new branch, `git checkout -b release/vX.Y.Z` +3. Update [Cargo.toml](./Cargo.toml) with the new version +4. Update and audit [CHANGELOG.md](./CHANGELOG.md) +5. `git push -u origin` +6. Open a PR +7. When merged, tag the merge commit with the version number: `git tag -as vX.Y.Z -m vX.Y.Z` +8. Push the tag: `git push origin vX.Y.Z` +9. Create a new release