Skip to content

Commit e6f9ecf

Browse files
committed
Bump Version to Beta 6.
1 parent 4d5cd3c commit e6f9ecf

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.event_name == 'push'
3030
uses: softprops/action-gh-release@v2
3131
with:
32-
tag_name: 2.0.0B4
32+
tag_name: 2.0.0B6
3333
name: 2.0.0 Beta 4
3434
body: ${{ github.event.head_commit.message }}
3535
prerelease: true
@@ -53,8 +53,8 @@ jobs:
5353
if: github.event_name == 'push'
5454
uses: softprops/action-gh-release@v2
5555
with:
56-
tag_name: 2.0.0B4
57-
name: 2.0.0 Beta 5
56+
tag_name: 2.0.0B6
57+
name: 2.0.0 Beta 6
5858
body: ${{ github.event.head_commit.message }}
5959
prerelease: true
6060
files: |

settings/update_settings_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def progress_callback(progress, downloaded_bytes, total_bytes):
7979

8080

8181
class UpdateDialog(QWidget):
82-
__version__ = "2.0.0B4"
82+
__version__ = "2.0.0B6"
8383

8484
def __init__(self):
8585
super().__init__()

update/example_usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def example_update_workflow():
2020
print("=== 应用程序更新工作流程示例 ===")
2121

2222
# 1. 初始化更新管理器
23-
current_version = "2.0.0B4" # 从配置文件或代码中获取当前版本
23+
current_version = "2.0.0B6" # 从配置文件或代码中获取当前版本
2424
manager = UpdateManager(current_version)
2525

2626
print(f"当前应用程序版本: {current_version}")

update/update_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def __init__(self, current_version: str):
1010
self.current_version = self._parse_version(current_version)
1111

1212
def _parse_version(self, version_str: str) -> tuple:
13-
# Handles versions like 2.0.0 and pre-release like 2.0.0B4, 2.0.0A1, 2.0.0D1, 2.0.0RC1
13+
# Handles versions like 2.0.0 and pre-release like 2.0.0B6, 2.0.0A1, 2.0.0D1, 2.0.0RC1
1414
parts = version_str.split('.')
1515
if len(parts) != 3:
1616
raise ValueError(f"Invalid version string: {version_str}")

0 commit comments

Comments
 (0)