Skip to content

Commit 5d3cdb7

Browse files
committed
Updated to v4.0.3 (hotfix)
1 parent 5b86708 commit 5d3cdb7

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
66
## [Unreleased]
77

8+
9+
## [4.0.3] - 2024-06-10
10+
811
### Changed
912
- Optimized final package size (reduced by 30% to 50%) by explicitly including necessary plugins/DLLs and excluding unnecessary ones with Nuitka [#47](https://github.com/AresValley/Artemis/issues/47)
1013

@@ -98,7 +101,8 @@ First release.
98101

99102

100103
<!-- Links definitions -->
101-
[Unreleased]: https://github.com/AresValley/Artemis/compare/v4.0.1...HEAD
104+
[Unreleased]: https://github.com/AresValley/Artemis/compare/v4.0.3...HEAD
105+
[4.0.1]: https://github.com/AresValley/Artemis/compare/v4.0.1...v4.0.3
102106
[4.0.1]: https://github.com/AresValley/Artemis/compare/v3.2.4...v4.0.1
103107
[3.2.4]: https://github.com/AresValley/Artemis/compare/v3.2.1...v3.2.4
104108
[3.2.3]: https://github.com/AresValley/Artemis/compare/v3.2.2...v3.2.3

artemis/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Constants():
1010
APPLICATION_NAME = 'Artemis'
1111
ORGANIZATION_NAME = 'AresValley'
1212
ORGANIZATION_DOMAIN = 'aresvalley.com'
13-
APPLICATION_VERSION = '4.0.1'
13+
APPLICATION_VERSION = '4.0.3'
1414

1515
SQL_NAME = 'data.sqlite'
1616

building/Windows/build_windows.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ python -m nuitka app.py `
2727
--force-stdout-spec="{TEMP}\artemis.out.log" `
2828
--windows-company-name=Aresvalley.com `
2929
--windows-product-name=Artemis `
30-
--windows-file-version=4.0.1 `
31-
--windows-product-version=4.0.1 `
30+
--windows-file-version=4.0.3 `
31+
--windows-product-version=4.0.3 `
3232
--windows-file-description=Artemis `
3333
--windows-icon-from-ico=images\artemis_icon.ico
3434

building/Windows/windows_installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "Artemis"
2-
#define MyAppVersion "4.0.1"
2+
#define MyAppVersion "4.0.3"
33
#define MyAppPublisher "AresValley"
44
#define MyAppURL "https://www.aresvalley.com/"
55
#define MyAppExeName "artemis.exe"

building/macOS/build_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ python -m nuitka app.py \
2323
--macos-app-name=Artemis \
2424
--macos-app-mode=gui \
2525
--macos-sign-identity=ad-hoc \
26-
--macos-app-version=4.0.1
26+
--macos-app-version=4.0.3
2727

2828
echo "Building Linux target finished."

0 commit comments

Comments
 (0)