Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v1
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Build package
run: |
pip install build
python -m build
pip install wheel
python setup.py bdist_wheel sdist
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.1.0
uses: pypa/gh-action-pypi-publish@v1.13.0
with:
user: __token__
password: ${{ secrets.PYPI_KEY }}
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.4.4 - 2026-01-14

### Fixed

- Upgrade used version in release workflow to the latest available.
- Correct build command in `tests.yml`.

## 0.4.3 - 2026-01-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion sphinx_togglebutton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
MESSAGE_CATALOG_NAME = "togglebutton"
translate = get_translation(MESSAGE_CATALOG_NAME)

__version__ = "0.4.3"
__version__ = "0.4.4"


def st_static_path(app):
Expand Down