Skip to content

Commit f2f71af

Browse files
committed
v0.1.3
1 parent d200da9 commit f2f71af

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.1.3
4+
5+
- Add fonttools version number in the About dialog
6+
- Add Windows .ico icon generator Makefile target
7+
- Add Python packaging configuration/support
8+
- Add PyPI distribution packaging and release support
9+
- Add GitHub Actions based GitHub release automation
10+
- Add GitHub Actions based PyPI release automation
11+
- Add CodeQL testing
12+
313
## v0.1.2
414

515
- Push the PyInstaller spec file to support PyInstaller Makefile target compiles (sorry GitHub snuck it into the default Python .gitignore file)

src/build/settings/base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app_name": "Slice",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"author": "Christopher Simpkins",
55
"main_module": "src/run.py",
66
"license": "GNU General Public License Version 3"

src/slice/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
)
5757
from .ui.widgets import DragDropLineEdit
5858

59-
__VERSION__ = "0.1.2"
59+
__VERSION__ = "0.1.3"
6060

6161

6262
class MainWindow(QMainWindow):

0 commit comments

Comments
 (0)