From f67ee9bc92ac320710400fb3a7409c3087f6d755 Mon Sep 17 00:00:00 2001 From: Marco Dalla Tiezza Date: Sun, 20 Oct 2024 19:22:25 +0200 Subject: [PATCH] Bumpt to python 3.12, updated action files and changelog --- .github/workflows/linux.yml | 4 ++-- .github/workflows/macOS.yml | 6 +++--- .github/workflows/windows.yml | 4 ++-- CHANGELOG.md | 7 +++++-- artemis/utils/constants.py | 2 +- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index aaa50e2..8f5b7c3 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -6,7 +6,7 @@ on: artemis_version: description: 'Version' required: true - default: '4.0.0' + default: '4.1.0' type: string jobs: @@ -19,7 +19,7 @@ jobs: - name: Setup python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - name: Build and package run: sh ./building/Linux/build_linux.sh diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index d73b52b..cd1d9ef 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -6,12 +6,12 @@ on: artemis_version: description: 'Version' required: true - default: '4.0.0' + default: '4.1.0' type: string jobs: build-macos-x86_64: - runs-on: macos-11 + runs-on: macos-12 steps: - name: Check out code uses: actions/checkout@v4 @@ -19,7 +19,7 @@ jobs: - name: Setup python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - name: Build and package run: sh ./building/macOS/build_macos.sh diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6602235..bedcd52 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -6,7 +6,7 @@ on: artemis_version: description: 'Version' required: true - default: '4.0.0' + default: '4.1.0' type: string jobs: @@ -19,7 +19,7 @@ jobs: - name: Setup python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.12' - name: Build and package run: ./building/Windows/build_windows.ps1 diff --git a/CHANGELOG.md b/CHANGELOG.md index dab7c54..03c3729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ ## [Unreleased] +## [4.1.0] - 2024-10-20 + ### Added - Created a setting panel for the audio player - Selection of the audio output device. Closes [#4](https://github.com/AresValley/Artemis/issues/4) @@ -13,7 +15,7 @@ - GOES Solar Ultraviolet Imager (SUVI), all wavelenght (94 Å, 131 Å, 171 Å, 195 Å, 284 Å, 304 Å) - GOES Thematic Map (from SUVI) - Large Angle and Spectrometric Coronagraph (LASCO), both C2/C3 range for optical imaging of the Sun’s corona - - Helioseismic and Magnetic Imager (HMI): Magnetogram, Intensitygram, Dopplergram (TODO) + - Helioseismic and Magnetic Imager (HMI): Magnetogram, Intensitygram, Dopplergram ### Fixed - Fixed margins for downloader window @@ -133,7 +135,8 @@ First release. -[Unreleased]: https://github.com/AresValley/Artemis/compare/v4.0.5...HEAD +[Unreleased]: https://github.com/AresValley/Artemis/compare/v4.1.0...HEAD +[4.1.0]: https://github.com/AresValley/Artemis/compare/v4.0.5...v4.1.0 [4.0.5]: https://github.com/AresValley/Artemis/compare/v4.0.3...v4.0.5 [4.0.3]: https://github.com/AresValley/Artemis/compare/v4.0.1...v4.0.3 [4.0.1]: https://github.com/AresValley/Artemis/compare/v3.2.4...v4.0.1 diff --git a/artemis/utils/constants.py b/artemis/utils/constants.py index f0219bd..8b880c1 100644 --- a/artemis/utils/constants.py +++ b/artemis/utils/constants.py @@ -10,7 +10,7 @@ class Constants(): APPLICATION_NAME = 'Artemis' ORGANIZATION_NAME = 'AresValley' ORGANIZATION_DOMAIN = 'aresvalley.com' - APPLICATION_VERSION = '4.0.5' + APPLICATION_VERSION = '4.1.0' SQL_NAME = 'data.sqlite'