bumped version for release
All checks were successful
Build on RHEL8 / build (push) Successful in 3m13s
Build on RHEL9 / build (push) Successful in 3m24s

This commit is contained in:
Erik Fröjdh
2025-08-22 09:52:24 +02:00
parent a0fb4900f0
commit 6c3524298f
3 changed files with 9 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
# Release notes # Release notes
### head ### 2025.8.22
Features: Features:
@@ -16,7 +16,7 @@ Bugfixes:
- Now using glibc 2.17 in conda builds (was using the host) - Now using glibc 2.17 in conda builds (was using the host)
- Fixed shifted pixels in clusters close to the edge of a frame - Fixed shifted pixels in clusters close to the edge of a frame
### 2025.07.18 ### 2025.7.18
Features: Features:
@@ -30,7 +30,7 @@ Bugfixes:
- Removed unused file: ClusterFile.cpp - Removed unused file: ClusterFile.cpp
### 2025.05.22 ### 2025.5.22
Features: Features:

View File

@@ -1 +1 @@
2025.7.18 2025.8.22

View File

@@ -7,6 +7,7 @@ Script to update VERSION file with semantic versioning if provided as an argumen
import sys import sys
import os import os
import re import re
from datetime import datetime
from packaging.version import Version, InvalidVersion from packaging.version import Version, InvalidVersion
@@ -26,9 +27,9 @@ def get_version():
# Check at least one argument is passed # Check at least one argument is passed
if len(sys.argv) < 2: if len(sys.argv) < 2:
return "0.0.0" version = datetime.today().strftime('%Y.%-m.%-d')
else:
version = sys.argv[1] version = sys.argv[1]
try: try:
v = Version(version) # normalize check if version follows PEP 440 specification v = Version(version) # normalize check if version follows PEP 440 specification
@@ -54,4 +55,4 @@ def write_version_to_file(version):
if __name__ == "__main__": if __name__ == "__main__":
version = get_version() version = get_version()
write_version_to_file(version) write_version_to_file(version)