Skip to content

Commit eeb601c

Browse files
committed
Bump version to 4.9.2
Update version references from 4.9.1 to 4.9.2 in documentation, __init__.py, About dialog, and main application class to prepare for new release.
1 parent 32c2d89 commit eeb601c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/CI_CD_README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This repository uses GitHub Actions to automatically build and release YTSage fo
55
## How It Works
66

77
### Trigger
8-
The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.1`, `v4.9.1`).
8+
The workflow is triggered when you push a git tag that starts with `v` (e.g., `v4.9.2`, `v4.9.2`).
99

1010
### Build Process
1111
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
2121
2. **Commit your changes**:
2222
```bash
2323
git add .
24-
git commit -m "Release v4.9.1"
24+
git commit -m "Release v4.9.2"
2525
```
2626

2727
3. **Create and push a tag**:
2828
```bash
29-
git tag v4.9.1
30-
git push origin v4.9.1
29+
git tag v4.9.2
30+
git push origin v4.9.2
3131
```
3232

3333
4. **Watch the action**: Go to Actions tab in GitHub to monitor progress

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
A modern, user-friendly YouTube video downloader built with PySide6.
55
"""
66

7-
__version__ = "4.9.1"
7+
__version__ = "4.9.2"
88
__author__ = "oop7"

src/gui/ytsage_gui_dialogs/ytsage_dialogs_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def _create_app_info_section(self) -> QWidget:
159159
layout.addWidget(title_label)
160160

161161
version_label = QLabel(
162-
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>{_('about.version', version=getattr(self._parent, 'version', '4.9.1'))}</span>"
162+
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>{_('about.version', version=getattr(self._parent, 'version', '4.9.2'))}</span>"
163163
)
164164
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
165165
layout.addWidget(version_label)

src/gui/ytsage_gui_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self) -> None:
7878
else:
7979
logger.info(f"Using yt-dlp from: {ytdlp_path}")
8080

81-
self.version = "4.9.1"
81+
self.version = "4.9.2"
8282
self.check_for_updates()
8383

8484
# Check for auto-updates if enabled

0 commit comments

Comments
 (0)