🔖 Release v1.4.6

This commit is contained in:
Oliver 2025-07-07 16:16:16 +02:00
parent e7d98dba3a
commit 0bc99bb4cf
3 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,16 @@
## [v1.4.6] 2025-07-07
### 💡 Neue Funktionen
-
### 🔧 Änderungen & Fixes
-
### 📦 Internes
- Anpassung vom versioning.py dass alle Dateien nach GitHub übermittelt werden
## [v1.4.5] 2025-07-07
### 💡 Neue Funktionen

View file

@ -1 +1 @@
VERSION = "1.4.5"
VERSION = "1.4.6"

View file

@ -55,7 +55,7 @@ def validate_changelog(version: str) -> bool:
def create_git_tag(version: str):
try:
subprocess.run(["git", "add", str(CHANGELOG_FILE), str(VERSION_FILE)], check=True)
subprocess.run(["git", "add", "."], check=True)
subprocess.run(["git", "commit", "-m", f"🔖 Release v{version}"], check=True)
subprocess.run(["git", "tag", f"v{version}"], check=True)
typer.echo(f"🏷️ Git-Tag 'v{version}' erstellt und commit durchgeführt.")