Skip to content

Commit

Permalink
Version v2024.02.07
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Feb 7, 2024
1 parent d689b7b commit d35e12e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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
## v2024.02.07

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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/v2023.06.27.zip
pip install https://github.com/Akuli/porcupine/archive/v2024.02.07.zip
porcu

To easily run porcupine again later,
Expand All @@ -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/v2023.06.27.zip
pip install https://github.com/Akuli/porcupine/archive/v2024.02.07.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 @@ -12,7 +12,7 @@

import platformdirs

version_info = (2023, 6, 27) # this is updated with scripts/release.py
version_info = (2024, 2, 7) # this is updated with scripts/release.py
__version__ = "%d.%02d.%02d" % version_info
__author__ = "Akuli"
__copyright__ = "Copyright (c) 2017-2024 Akuli"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "porcupine"
version = "2023.06.27"
version = "2024.02.07"
description = "A decent editor written in tkinter"
authors = [{name = "Akuli", email = "[email protected]"}]
readme = "README.md"
Expand Down

0 comments on commit d35e12e

Please sign in to comment.