Skip to content

Commit 3b5c05e

Browse files
committed
v0.4.0
1 parent 062d232 commit 3b5c05e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v0.4.0
4+
5+
- add macOS code signed / installer notarization support
6+
- add new macOS code signing, notarization, and code signing/notary validation make targets
7+
- add Arch Linux AUR package support and documentation (thanks Caleb!)
8+
- add Homebrew cask tap install/uninstall/upgrade support and documentation
9+
- add maintainer docs on path `docs/MAINTAINER.md`
10+
311
## v0.3.1
412

513
- minor patch for Homebrew distribution testing

src/build/settings/base.json

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

src/slice/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
)
5959
from .ui.widgets import DragDropLineEdit
6060

61-
__VERSION__ = "0.3.1"
61+
__VERSION__ = "0.4.0"
6262

6363

6464
class MainWindow(QMainWindow):

0 commit comments

Comments
 (0)