Skip to content

Commit d35e12e

Browse files
committed
Version v2024.02.07
1 parent d689b7b commit d35e12e

File tree

4 files changed

+5
-5
lines changed

4 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+
## v2024.02.07
66

77
Bug fixes:
88
- Porcupine no longer crashes on Mac when you try to open a file. Thank you [ThePhilgrim](https://github.com/ThePhilgrim) for fixing this.

README.md

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

5959
To easily run porcupine again later,
@@ -73,7 +73,7 @@ Then run these commands:
7373
python3 -m venv porcupine-venv
7474
source porcupine-venv/bin/activate
7575
pip install wheel
76-
pip install https://github.com/Akuli/porcupine/archive/v2023.06.27.zip
76+
pip install https://github.com/Akuli/porcupine/archive/v2024.02.07.zip
7777
porcu
7878

7979
To easily run porcupine again later,

porcupine/__init__.py

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

1313
import platformdirs
1414

15-
version_info = (2023, 6, 27) # this is updated with scripts/release.py
15+
version_info = (2024, 2, 7) # this is updated with scripts/release.py
1616
__version__ = "%d.%02d.%02d" % version_info
1717
__author__ = "Akuli"
1818
__copyright__ = "Copyright (c) 2017-2024 Akuli"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build-backend = "flit_core.buildapi"
1818

1919
[project]
2020
name = "porcupine"
21-
version = "2023.06.27"
21+
version = "2024.02.07"
2222
description = "A decent editor written in tkinter"
2323
authors = [{name = "Akuli", email = "akuviljanen17@gmail.com"}]
2424
readme = "README.md"

0 commit comments

Comments
 (0)