Compare commits

2 Commits

Author SHA1 Message Date
51e5c10a5d chore(changelog): update unreleased changelog 2025-05-11 12:21:19 +00:00
c596f46389 fix(scripts): update nightly version suffix format
All checks were successful
Auto Changelog & Release / detect-version-change (push) Successful in 5s
Auto Changelog & Release / release (push) Has been skipped
Auto Changelog & Release / changelog-only (push) Successful in 7s
Build and Publish nightly package / build-and-publish (push) Successful in 16s
- Changes nightly version suffix to use `.dev` format for consistency
- Replaces `+nightly` with `.dev` followed by timestamp
2025-05-11 14:21:04 +02:00
2 changed files with 7 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ NIGHTLY_SUFFIX=""
if [[ "$1" == "nightly" ]]; then
# Beispiel: 20240511.1358 → 11. Mai, 13:58 Uhr
NIGHTLY_SUFFIX="+nightly.$(date +%Y%m%d.%H%M)"
NIGHTLY_SUFFIX=".dev$(date +%Y%m%d%H%M)"
fi
FULL_VERSION="${BASE_VERSION}${NIGHTLY_SUFFIX}"

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [unreleased]
### 🐛 Bug Fixes
- *(scripts)* Update nightly version suffix format - ([c596f46](https://git.0xmax42.io/maxp/repoCat/commit/c596f46389c2ea88dbf5699fc41a5d7107827d55))
## [0.1.0] - 2025-05-11
### 🚀 Features