diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0218571..a2025b7c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 968d59f3..f251a9a6 100644 --- a/CHANGELOG.rst +++ b/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). diff --git a/src/sphinxcontrib/bibtex/__init__.py b/src/sphinxcontrib/bibtex/__init__.py index 5f79c1a1..f8299f06 100644 --- a/src/sphinxcontrib/bibtex/__init__.py +++ b/src/sphinxcontrib/bibtex/__init__.py @@ -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,