Skip to content

Commit 5c5359f

Browse files
committed
Bump version to 0.4.1 and update test workflow
Updated the GitHub Actions test workflow to use Python 3.11 instead of 3.8. Incremented the package version to 0.4.1 and updated the changelog to reflect the workflow change.
1 parent aa94ac0 commit 5c5359f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout source
1414
uses: actions/checkout@v2
15-
- name: Set up Python 3.8
15+
- name: Set up Python 3.11
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: "3.8"
18+
python-version: "3.11"
1919
- name: Build package
2020
run: |
2121
pip install build

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.4.1 - 2026-01-14
4+
5+
### Fixed
6+
7+
- Updated the release workflow to use a recent Python version.
8+
39
## 0.4.0 - 2026-01-14
410

511
### Added

sphinx_togglebutton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
MESSAGE_CATALOG_NAME = "togglebutton"
1010
translate = get_translation(MESSAGE_CATALOG_NAME)
1111

12-
__version__ = "0.4.0"
12+
__version__ = "0.4.1"
1313

1414

1515
def st_static_path(app):

0 commit comments

Comments
 (0)