From 73f259cb2bb815598142451a3db408ab307b37c9 Mon Sep 17 00:00:00 2001 From: Akuli Date: Sat, 16 Oct 2021 11:36:48 +0300 Subject: [PATCH] Version v0.99.0 --- README.md | 4 ++-- porcupine/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00f2f6687..8a03356cd 100644 --- a/README.md +++ b/README.md @@ -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/v0.98.2.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v0.99.0.zip porcu If you want to leave Porcupine running and use the same terminal for something else, @@ -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/v0.98.2.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v0.99.0.zip porcu If you want to leave Porcupine running and use the same terminal for something else, diff --git a/porcupine/__init__.py b/porcupine/__init__.py index e3e6a133a..03cb9f3cb 100644 --- a/porcupine/__init__.py +++ b/porcupine/__init__.py @@ -11,7 +11,7 @@ import appdirs -version_info = (0, 98, 2) # this is updated with scripts/release.py +version_info = (0, 99, 0) # this is updated with scripts/release.py __version__ = "%d.%d.%d" % version_info __author__ = "Akuli" __copyright__ = "Copyright (c) 2017-2021 Akuli"