Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release notes for v1.2.0 #2777

Merged
merged 3 commits into from Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/release/release-procedure.md
Expand Up @@ -22,13 +22,13 @@
- [ ] Wait for the `Update dist` PR to be automatically created after the previous one has been merged, and then
proceed to merge it.
- [ ] Make a release with the updated Scala CLI version.
- [ ] Update the `v1` & `v1.1` tags to the latest release commit.
- [ ] Update the `v1` & `v1.2` tags to the latest release commit.
```bash
git fetch --all
git checkout origin v1.1.x
git tag -d v1.1
git tag v1.1
git push origin v1.1 -f
git checkout origin v1.2.x
git tag -d v1.2
git tag v1.2
git push origin v1.2 -f
git tag -d v1
git tag v1
git push origin v1 -f
Expand Down