Skip to content

Commit

Permalink
Prepare 2.6.2 (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Jan 10, 2024
1 parent a8effe0 commit 46701fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m build --sdist --wheel
twine check dist/*
- name: Publish to Test PyPI
if: !startsWith(github.ref, 'refs/tags')
if: ${{ !startsWith(github.ref, 'refs/tags') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
@@ -1,5 +1,5 @@
2.6.2 (in development)
----------------------
2.6.2 (10 January 2023)
-----------------------

* Fix bibliography header repetition when recompiling documents
(reported by ragonneau, see issue #342 and pull request #343).
Expand Down
2 changes: 1 addition & 1 deletion src/sphinxcontrib/bibtex/__init__.py
Expand Up @@ -50,7 +50,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
app.add_role("footcite", FootCiteRole())

return {
"version": "2.6.2a0",
"version": "2.6.2",
"env_version": 9,
"parallel_read_safe": True,
"parallel_write_safe": True,
Expand Down

0 comments on commit 46701fd

Please sign in to comment.