diff --git a/.github/CI_CD_README.md b/.github/CI_CD_README.md
index 4c425d0..76aa7cc 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.1`, `v4.9.1`).
+The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.2`, `v4.9.2`).
### 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.1"
+ git commit -m "Release v4.9.2"
```
3. **Create and push a tag**:
```bash
- git tag v4.9.1
- git push origin v4.9.1
+ git tag v4.9.2
+ git push origin v4.9.2
```
4. **Watch the action**: Go to Actions tab in GitHub to monitor progress
diff --git a/src/__init__.py b/src/__init__.py
index bf387f5..c0681d0 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.1"
+__version__ = "4.9.2"
__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 6258df2..f7b9a07 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.1'))}"
+ f"{_('about.version', version=getattr(self._parent, 'version', '4.9.2'))}"
)
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 637ec4e..9f6779f 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.1"
+ self.version = "4.9.2"
self.check_for_updates()
# Check for auto-updates if enabled