Skip to content

Commit

Permalink
Version v2022.07.31
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jul 31, 2022
1 parent 243fd2d commit 59aa5d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Unlike the Git commit history, this changelog does not include code cleanups
and other details that don't affect using Porcupine.


## Unreleased
## v2022.07.31

Porcupine now uses [calver](https://calver.org/):
from now on, a Porcupine version is simply its release date in the "year.month.day" format.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Other people shouldn't need them.
changing the changelog afterwards is difficult, as the text gets copied into the releases page.
3. Merge the pull request and pull the merge commit to your local `master` branch.
4. Run `python3 scripts/release.py` from the `master` branch.
The script pushes a tag named e.g. `v2022.07.29`,
The script pushes a tag named e.g. `v2022.07.31`,
which triggers the parts of `.github/workflows/build.yml`
that have `if: startsWith(github.ref, 'refs/tags/v')` in them.
They build and deploy docs, copy the changelog to the releases page, and so on.
Expand Down
2 changes: 1 addition & 1 deletion porcupine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import appdirs

version_info = (2022, 7, 29) # this is updated with scripts/release.py
version_info = (2022, 7, 31) # this is updated with scripts/release.py
__version__ = "%d.%02d.%02d" % version_info
__author__ = "Akuli"
__copyright__ = "Copyright (c) 2017-2022 Akuli"
Expand Down

0 comments on commit 59aa5d1

Please sign in to comment.