Skip to content

Commit 7ac81e1

Browse files
committed
Bump version to 2.3.1
1 parent 5db9b49 commit 7ac81e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/lint-and-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ jobs:
116116
- name: Upload Build Artifact
117117
uses: actions/upload-artifact@v4
118118
with:
119-
name: AutoSplit v${{ steps.autosplit_version.outputs.AUTOSPLIT_VERSION }} for ${{ matrix.os }} (Python ${{ matrix.python-version }})
119+
name: >
120+
AutoSplit v${{ steps.autosplit_version.outputs.AUTOSPLIT_VERSION }}
121+
for ${{ matrix.os }} (Python ${{ matrix.python-version }})
120122
path: |
121123
dist/AutoSplit*
122124
dist/settings.toml

src/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,6 @@ def run_tesseract(png: bytes):
313313

314314
# Shared strings
315315
# Check `excludeBuildNumber` during workflow dispatch build generate a clean version number
316-
AUTOSPLIT_VERSION = "2.3.0" + (f"-{AUTOSPLIT_BUILD_NUMBER}" if AUTOSPLIT_BUILD_NUMBER else "")
316+
AUTOSPLIT_VERSION = "2.3.1" + (f"-{AUTOSPLIT_BUILD_NUMBER}" if AUTOSPLIT_BUILD_NUMBER else "")
317317
"""AutoSplit Version number"""
318318
GITHUB_REPOSITORY = AUTOSPLIT_GITHUB_REPOSITORY

0 commit comments

Comments
 (0)