Carp/docs/ReleaseChecklist.md

33 lines
543 B
Markdown
Raw Permalink Normal View History

# Release Checklist
Do all of these things (somewhat) in order:
# 1. Update Cabal project version
See the second line of the file [CarpHask.cabal](../CarpHask.cabal).
# 2. Update the "Welcome to Carp X.Y.Z" REPL message
See [Main.hs](../App/Main.hs).
# 3. Update the blurb in README.md
See [README.md](../README.md)
# 4. Update the changelog
2021-09-08 20:59:00 +03:00
See [CHANGELOG.md](../CHANGELOG.md)
# 5. Make a commit on master
```bash
$ git commit -m "Release X.Y.Z"
```
# 6. Tag the commit and push it
```bash
$ git tag vX.Y.Z
$ git push --tags
```