diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c6819dcd..468bfd64e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 +## v2023.06.27 New features: - Porcupine now looks quite different than before, because it uses [the sv-ttk themes](https://pypi.org/project/sv-ttk/). You can choose between dark and light theme in settings. diff --git a/README.md b/README.md index f1959aa4e..d12b0380b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Open a terminal and run these commands: python3 -m venv porcupine-venv source porcupine-venv/bin/activate pip install wheel - pip install https://github.com/Akuli/porcupine/archive/v2023.03.11.zip + pip install https://github.com/Akuli/porcupine/archive/v2023.06.27.zip porcu To easily run porcupine again later, @@ -75,7 +75,7 @@ Then run these commands: python3 -m venv porcupine-venv source porcupine-venv/bin/activate pip install wheel - pip install https://github.com/Akuli/porcupine/archive/v2023.03.11.zip + pip install https://github.com/Akuli/porcupine/archive/v2023.06.27.zip porcu To easily run porcupine again later, diff --git a/porcupine/__init__.py b/porcupine/__init__.py index 0971a5db3..98d718dce 100644 --- a/porcupine/__init__.py +++ b/porcupine/__init__.py @@ -12,7 +12,7 @@ import platformdirs -version_info = (2023, 3, 11) # this is updated with scripts/release.py +version_info = (2023, 6, 27) # this is updated with scripts/release.py __version__ = "%d.%02d.%02d" % version_info __author__ = "Akuli" __copyright__ = "Copyright (c) 2017-2023 Akuli"