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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: "3.8"
python-version: "3.11"
- name: Build package
run: |
pip install build
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.4.1 - 2026-01-14

### Fixed

- Updated the release workflow to use a recent Python version.

## 0.4.0 - 2026-01-14

### Added
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.0"
__version__ = "0.4.1"


def st_static_path(app):
Expand Down