Skip to content

Commit

Permalink
Version v2023.03.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Mar 10, 2023
1 parent 7bae906 commit 4494065
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
## v2023.03.11

New features:
- On Linux, there's a new and easy way to launch Porcupine without using the terminal. In settings, you can check "Show Porcupine in the desktop menu system", which makes Porcupine appear in the operating system's menu like most other applications. There are [more instructions in the README](https://github.com/Akuli/porcupine#installing-porcupine).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.01.19.zip
pip install https://github.com/Akuli/porcupine/archive/v2023.03.11.zip
porcu

To easily run porcupine again later,
Expand All @@ -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.01.19.zip
pip install https://github.com/Akuli/porcupine/archive/v2023.03.11.zip
porcu

To easily run porcupine again later,
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 = (2023, 1, 19) # this is updated with scripts/release.py
version_info = (2023, 3, 11) # this is updated with scripts/release.py
__version__ = "%d.%02d.%02d" % version_info
__author__ = "Akuli"
__copyright__ = "Copyright (c) 2017-2023 Akuli"
Expand Down

0 comments on commit 4494065

Please sign in to comment.