diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index e92558d..47d84be 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -19,5 +19,3 @@ jobs: - name: Publish to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ diff --git a/docs/changelog.rst b/docs/changelog.rst index cb0ecc9..2935470 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -13,8 +13,8 @@ Changes for upcoming releases will be listed without a release date - these are available by installing the develop branch from github. -2.1.0, TBC ----------- +2.1.0, 2024-08-28 +----------------- Feature: @@ -22,11 +22,18 @@ Feature: Bugfix: +* Restores missing files from packaging issue in 2.0.0 (#186) * Form field ``has_changed`` now correctly detects if a TagField has changed (#185) * Admin enhance ensures ``list_display`` is a tuple (#183) +Internal: + +* Improve build step to check packaging is correct (#186) + Thanks to: +* George Hickman (ghickman) for help fixing the missing files and preventing it + happening again in the future (#186) * Christian Schneider (cnschn) for help fixing ``has_changed`` (#185) diff --git a/tagulous/__init__.py b/tagulous/__init__.py index 2b3b4d5..2438efa 100644 --- a/tagulous/__init__.py +++ b/tagulous/__init__.py @@ -3,6 +3,6 @@ Django Tagulous - Fabulous Tags """ -__version__ = "2.1.0-rc1" +__version__ = "2.1.0" __license__ = "BSD" __author__ = "Richard Terry"