Skip to content

Commit c7d2e78

Browse files
authored
fix: actually update version number (#89)
1 parent e9f0ae5 commit c7d2e78

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustac"
3-
version = "0.6.0-rc.0"
3+
version = "0.6.0"
44
edition = "2021"
55
publish = false
66

RELEASING.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
# Releasing
22

3-
TODO
3+
1. Determine the next version.
4+
We follow (to the best of our ability) [semantic versioning](https://semver.org/).
5+
2. Create a new branch, `git checkout -b release/vX.Y.Z`
6+
3. Update [Cargo.toml](./Cargo.toml) with the new version
7+
4. Update and audit [CHANGELOG.md](./CHANGELOG.md)
8+
5. `git push -u origin`
9+
6. Open a PR
10+
7. When merged, tag the merge commit with the version number: `git tag -as vX.Y.Z -m vX.Y.Z`
11+
8. Push the tag: `git push origin vX.Y.Z`
12+
9. Create a new release

0 commit comments

Comments
 (0)