Skip to content

Commit 20a657d

Browse files
authored
Merge pull request #5 from VoDaiLocz/copilot/create-new-release
chore: prepare v1.1.0 release
2 parents 1781ff9 + 1f00e1c commit 20a657d

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,12 @@ jobs:
9292
- Multi-language support (English, Vietnamese, Chinese, Russian)
9393
- Cross-platform compatibility (Windows, macOS, Linux)
9494
- Modern PyQt5-based GUI with professional styling
95-
- Version display in status bar
95+
- Version display in GUI status bar
96+
97+
### 🔄 Changes in v1.1.0
98+
- Upgraded deprecated GitHub Actions for CI/CD reliability
99+
- Dropped EOL Python 3.7/3.8 from test matrix (now 3.9, 3.10, 3.11)
100+
- Updated release automation with `softprops/action-gh-release` v2
96101
97102
### 📦 Downloads
98103
- **Windows**: `qoder-reset-tool-windows.zip`

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.1.0] - 2026-03-14
11+
12+
### Changed
13+
- **CI/CD Pipeline**: Upgraded deprecated GitHub Actions (`upload-artifact` v3→v4, `download-artifact` v3→v4, `cache` v3→v4, `setup-python` v4→v5, `codecov-action` v3→v4)
14+
- **CI/CD Pipeline**: Dropped EOL Python 3.7 and 3.8 from test matrix; now covers 3.9, 3.10, 3.11
15+
- **Release Workflow**: Updated `softprops/action-gh-release` to v2 for improved release automation
16+
17+
### Added
18+
- **Version Management**: Automated release workflow triggered on `v*` tag push with cross-platform PyInstaller builds
19+
- **Version Display**: Application version shown in GUI status bar via `__version__` constant
20+
1021
## [1.0.0] - 2025-03-05
1122

1223
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Qoder Reset Tool 🔒
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4-
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/locfaker/Qoder-Free/releases/tag/v1.0.0)
4+
[![Version](https://img.shields.io/badge/version-1.1.0-blue.svg)](https://github.com/VoDaiLocz/Qoder-Free/releases/tag/v1.1.0)
55
[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)
66
[![PyQt5](https://img.shields.io/badge/GUI-PyQt5-green.svg)](https://pypi.org/project/PyQt5/)
77
[![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey.svg)](https://github.com/locfaker/Qoder-Free)

qoder_reset_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Implemented using PyQt5, fully designed according to user prototype
55
"""
66

7-
__version__ = "1.0.0"
7+
__version__ = "1.1.0"
88

99
import os
1010
import sys

0 commit comments

Comments
 (0)