Skip to content

Commit

Permalink
Version v2022.08.27
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Aug 27, 2022
1 parent 2f96b07 commit 81b6fd9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.08.27

The main feature in this release is Porcupine's new syntax highlighter. It is faster and less buggy than the old syntax highlighter. The old and new highlighters are also known as "pygments highlighter" (old) and "tree-sitter highlighter" (new), named after the libraries they are based on.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Open a terminal and run these commands:
python3 -m pip install --user --upgrade pip wheel
python3 -m venv porcupine-venv
source porcupine-venv/bin/activate
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.07.31.zip
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.27.zip
porcu

If you want to leave Porcupine running and use the same terminal for something else,
Expand All @@ -74,7 +74,7 @@ Then run these commands:
python3 -m pip install --user --upgrade pip wheel
python3 -m venv porcupine-venv
source porcupine-venv/bin/activate
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.07.31.zip
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.27.zip
porcu

If you want to leave Porcupine running and use the same terminal for something else,
Expand Down 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.31`,
The script pushes a tag named e.g. `v2022.08.27`,
which triggers the parts of `.github/workflows/release-builds.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, 31) # this is updated with scripts/release.py
version_info = (2022, 8, 27) # 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 81b6fd9

Please sign in to comment.