Skip to content

Commit 81b6fd9

Browse files
committed
Version v2022.08.27
1 parent 2f96b07 commit 81b6fd9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Unlike the Git commit history, this changelog does not include code cleanups
22
and other details that don't affect using Porcupine.
33

44

5-
## Unreleased
5+
## v2022.08.27
66

77
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.
88

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Open a terminal and run these commands:
5353
python3 -m pip install --user --upgrade pip wheel
5454
python3 -m venv porcupine-venv
5555
source porcupine-venv/bin/activate
56-
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.07.31.zip
56+
python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.08.27.zip
5757
porcu
5858

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

8080
If you want to leave Porcupine running and use the same terminal for something else,
@@ -260,7 +260,7 @@ Other people shouldn't need them.
260260
changing the changelog afterwards is difficult, as the text gets copied into the releases page.
261261
3. Merge the pull request and pull the merge commit to your local `master` branch.
262262
4. Run `python3 scripts/release.py` from the `master` branch.
263-
The script pushes a tag named e.g. `v2022.07.31`,
263+
The script pushes a tag named e.g. `v2022.08.27`,
264264
which triggers the parts of `.github/workflows/release-builds.yml`
265265
that have `if: startsWith(github.ref, 'refs/tags/v')` in them.
266266
They build and deploy docs, copy the changelog to the releases page, and so on.

porcupine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import appdirs
1313

14-
version_info = (2022, 7, 31) # this is updated with scripts/release.py
14+
version_info = (2022, 8, 27) # this is updated with scripts/release.py
1515
__version__ = "%d.%02d.%02d" % version_info
1616
__author__ = "Akuli"
1717
__copyright__ = "Copyright (c) 2017-2022 Akuli"

0 commit comments

Comments
 (0)