Skip to content

Commit 6e4cb91

Browse files
committed
Update release workflow and bump version to 0.4.4
Upgraded GitHub Actions versions and corrected build commands in tests.yml for improved reliability. Updated CHANGELOG and bumped package version to 0.4.4.
1 parent 9465032 commit 6e4cb91

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout source
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v6
1515
- name: Set up Python 3.11
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.11"
1919
- name: Build package
2020
run: |
21-
pip install build
22-
python -m build
21+
pip install wheel
22+
python setup.py bdist_wheel sdist
2323
- name: Publish
24-
uses: pypa/gh-action-pypi-publish@v1.1.0
24+
uses: pypa/gh-action-pypi-publish@v1.13.0
2525
with:
2626
user: __token__
2727
password: ${{ secrets.PYPI_KEY }}

CHANGELOG.md

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

3+
## 0.4.4 - 2026-01-14
4+
5+
### Fixed
6+
7+
- Upgrade used version in release workflow to the latest available.
8+
- Correct build command in `tests.yml`.
9+
310
## 0.4.3 - 2026-01-14
411

512
### Fixed

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.3"
12+
__version__ = "0.4.4"
1313

1414

1515
def st_static_path(app):

0 commit comments

Comments
 (0)