From fe5638393ad3f78f2b4f8a988c7fd7b2d1ac92b9 Mon Sep 17 00:00:00 2001
From: oop7 <110548351+oop7@users.noreply.github.com>
Date: Sat, 25 Oct 2025 19:50:50 +0300
Subject: [PATCH] Bump version to 4.9.1
Update version references from 4.9.0 to 4.9.1 in documentation, __init__.py, AboutDialog, and main application window to prepare for new release.
---
.github/CI_CD_README.md | 8 ++++----
src/__init__.py | 2 +-
src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py | 2 +-
src/gui/ytsage_gui_main.py | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/CI_CD_README.md b/.github/CI_CD_README.md
index ee49587..4c425d0 100644
--- a/.github/CI_CD_README.md
+++ b/.github/CI_CD_README.md
@@ -5,7 +5,7 @@ This repository uses GitHub Actions to automatically build and release YTSage fo
## How It Works
### Trigger
-The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.0`, `v4.9.1`).
+The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.1`, `v4.9.1`).
### Build Process
1. **Setup**: Uses Python 3.13.6 on all platforms
@@ -21,13 +21,13 @@ The workflow is triggered when you push a git tag that starts with `v` (e.g., `v
2. **Commit your changes**:
```bash
git add .
- git commit -m "Release v4.9.0"
+ git commit -m "Release v4.9.1"
```
3. **Create and push a tag**:
```bash
- git tag v4.9.0
- git push origin v4.9.0
+ git tag v4.9.1
+ git push origin v4.9.1
```
4. **Watch the action**: Go to Actions tab in GitHub to monitor progress
diff --git a/src/__init__.py b/src/__init__.py
index f8c5e88..bf387f5 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -4,5 +4,5 @@ YTSage - YouTube Video Downloader
A modern, user-friendly YouTube video downloader built with PySide6.
"""
-__version__ = "4.9.0"
+__version__ = "4.9.1"
__author__ = "oop7"
diff --git a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py
index 5bd505a..6258df2 100644
--- a/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py
+++ b/src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py
@@ -159,7 +159,7 @@ class AboutDialog(QDialog):
layout.addWidget(title_label)
version_label = QLabel(
- f"{_('about.version', version=getattr(self._parent, 'version', '4.9.0'))}"
+ f"{_('about.version', version=getattr(self._parent, 'version', '4.9.1'))}"
)
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
layout.addWidget(version_label)
diff --git a/src/gui/ytsage_gui_main.py b/src/gui/ytsage_gui_main.py
index 9645364..1a5fdc0 100644
--- a/src/gui/ytsage_gui_main.py
+++ b/src/gui/ytsage_gui_main.py
@@ -78,7 +78,7 @@ class YTSageApp(QMainWindow, FormatTableMixin, VideoInfoMixin): # Inherit from
else:
logger.info(f"Using yt-dlp from: {ytdlp_path}")
- self.version = "4.9.0"
+ self.version = "4.9.1"
self.check_for_updates()
# Check for auto-updates if enabled