From d689b7b4993bf424851c74bdab3657605e805224 Mon Sep 17 00:00:00 2001 From: Akuli Date: Wed, 7 Feb 2024 14:19:22 +0200 Subject: [PATCH] Revert "Version v2024.02.07" This reverts commit 17ff19bd771377d49d4e25b793d140a3afc40db4. --- CHANGELOG.md | 2 +- README.md | 4 ++-- porcupine/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 813dd871c..8a767388e 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. -## v2024.02.07 +## Unreleased Bug fixes: - Porcupine no longer crashes on Mac when you try to open a file. Thank you [ThePhilgrim](https://github.com/ThePhilgrim) for fixing this. diff --git a/README.md b/README.md index 13b73ebcb..b1f0de745 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,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/v2024.02.07.zip + pip install https://github.com/Akuli/porcupine/archive/v2023.06.27.zip porcu To easily run porcupine again later, @@ -73,7 +73,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/v2024.02.07.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 51228cfdc..6c7fa7c93 100644 --- a/porcupine/__init__.py +++ b/porcupine/__init__.py @@ -12,7 +12,7 @@ import platformdirs -version_info = (2024, 2, 7) # 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-2024 Akuli" diff --git a/pyproject.toml b/pyproject.toml index 463b381a3..1ee313d42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ build-backend = "flit_core.buildapi" [project] name = "porcupine" -version = "2024.02.07" +version = "2023.06.27" description = "A decent editor written in tkinter" authors = [{name = "Akuli", email = "akuviljanen17@gmail.com"}] readme = "README.md"