3 Commits

Author SHA1 Message Date
AresValley
cd5d31b404 Updated changelog 2022-09-30 22:37:22 +02:00
AresValley
5a1db2c0d4 Updated version info 2022-09-30 22:33:25 +02:00
AresValley
e4fdf1d564 Changed python version (3.10->3.9) for packaging 2022-09-30 22:10:12 +02:00
3 changed files with 8 additions and 4 deletions

View File

@@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Python 3.10
- name: Use Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.9'
- name: Install dependencies
run: pip install -r ./requirements/requirements.txt
@@ -21,7 +21,7 @@ jobs:
run: |
pip install pyinstaller
- name: Build Artemis main executables and
- name: Build Artemis main executables
run: |
CD spec_files\Windows

View File

@@ -3,6 +3,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
The first release is [3.0.0] because this is actually the third major version (completely rewritten) of the software.
## [3.2.4] - 2022-09-30
### Fixed
- Fixed crash on opening the Rx/Tx Condition tab
## [3.2.3] - 2022-09-29
### Added
- Add auto-packaging feature using GitHub actions for Windows OS (experimental)

View File

@@ -64,7 +64,7 @@ import loggingconf # noqa 401
# import default_imgs_rc
__LATEST_VERSION__ = "3.2.3"
__LATEST_VERSION__ = "3.2.4"
if IS_BINARY:
__VERSION__ = __LATEST_VERSION__