Skip to content

Commit d9b44c9

Browse files
committed
release: bump version to 1.2.13
Patch release to republish GHCR images with OCI description metadata.
1 parent 3149375 commit d9b44c9

6 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.13] - 2026-05-24
11+
12+
### Fixed
13+
- **GHCR Image Metadata**: Added OCI `org.opencontainers.image.description` via Dockerfile `LABEL` and publish workflow annotations so the container package page shows the project description on multi-arch manifests.
14+
1015
## [1.2.12] - 2026-05-24
1116

1217
### Fixed

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
spintax, media support, and compliance controls.
77
"""
88

9-
__version__ = "1.2.12"
9+
__version__ = "1.2.13"
1010
__author__ = "VoxHash"
1111
__email__ = "contact@voxhash.dev"

app/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
# Create QApplication
3232
app = QApplication(sys.argv)
3333
app.setApplicationName("Telegram Multi-Account Message Sender")
34-
app.setApplicationVersion("1.2.12")
34+
app.setApplicationVersion("1.2.13")
3535

3636
# Create and show main window
3737
main_window = MainWindow()

app/gui/widgets/about_widget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def setup_ui(self):
4040
content_layout.addWidget(self.title_label)
4141

4242
# Version
43-
self.version_label = QLabel(_("app.version").format(version="1.2.12"))
43+
self.version_label = QLabel(_("app.version").format(version="1.2.13"))
4444
version_font = QFont()
4545
version_font.setPointSize(12)
4646
self.version_label.setFont(version_font)
@@ -89,5 +89,5 @@ def on_language_changed(self, language: str):
8989
self.logger.info(f"Language changed to: {language}")
9090
# Update the content with new translations
9191
self.title_label.setText(f"🚀 {_('app.title')}")
92-
self.version_label.setText(_("app.version").format(version="1.2.12"))
92+
self.version_label.setText(_("app.version").format(version="1.2.13"))
9393
self.update_about_content()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "telegram-multi-account-sender"
3-
version = "1.2.12"
3+
version = "1.2.13"
44
description = "Professional-grade desktop application for managing and sending messages across multiple Telegram accounts"
55
readme = "README.md"
66
license = {text = "Eclipse Public License 2.0"}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
1717

1818
# Read version
19-
version = "1.2.12"
19+
version = "1.2.13"
2020

2121
setup(
2222
name="telegram-multi-account-sender",

0 commit comments

Comments
 (0)