Skip to content

Commit b0bb99e

Browse files
committed
Version v2024.03.31
1 parent 1fbfa09 commit b0bb99e

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.03.31
66

77
- There are two new easter eggs in the about dialog. Happy Easter :)
88
- Porcupine's documentation has been updated and rearranged. The documentation is now clearly split into two folders, [user-doc](https://github.com/Akuli/porcupine/tree/main/user-doc) for using Porcupine and [dev-doc](https://github.com/Akuli/porcupine/tree/main/dev-doc) for developing Porcupine. Both folders also contain newly written documentation. Porcupine Wiki was deleted, and deleting `akuli.github.io/porcupine` is planned.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Open a terminal and run these commands:
5757
python3 -m venv porcupine-venv
5858
source porcupine-venv/bin/activate
5959
pip install wheel
60-
pip install https://github.com/Akuli/porcupine/archive/v2024.03.09.zip
60+
pip install https://github.com/Akuli/porcupine/archive/v2024.03.31.zip
6161
porcu
6262

6363
To easily run porcupine again later,
@@ -80,7 +80,7 @@ Then run these commands:
8080
python3 -m venv porcupine-venv
8181
source porcupine-venv/bin/activate
8282
pip install wheel
83-
pip install https://github.com/Akuli/porcupine/archive/v2024.03.09.zip
83+
pip install https://github.com/Akuli/porcupine/archive/v2024.03.31.zip
8484
porcu
8585

8686
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 = (2024, 3, 9) # this is updated with scripts/release.py
15+
version_info = (2024, 3, 31) # 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 = "2024.03.09"
21+
version = "2024.03.31"
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)