Skip to content

Commit

Permalink
Merge pull request #877 from jazzband/prepare-5-0-1
Browse files Browse the repository at this point in the history
Prepare v5.0.1
  • Loading branch information
rtpg committed Oct 26, 2023
2 parents ee1e98c + b5ded0d commit 1b241a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog
(Unreleased)
~~~~~~~~~~~~

5.0.1 (2023-10-26)
~~~~~~~~~~~~~~~~~~

* Fix the package metadata to properly reflect the right Django and Python version requirements
Release 5.0.0 improperly stated its Django bounds as >=3.2, so people installing without bounds will end up on a version that won't work.

5.0.0 (2023-10-24)
~~~~~~~~~~~~~~~~~~
* **Backwards icompatible:** Rename the (``content_type``, ``object_id``) index on ``TaggedItem``.
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ These steps need to happen by a release maintainer.

To make a release, the following needs to happen:

- Make sure that ``setup.cfg`` is set up properly w/r/t Python and Django requirements
- Bump the version number in ``taggit/__init__.py``
- Update the changelog (making sure to add the (Unreleased) section to the top)
- Get those changes onto the ``master`` branch
Expand Down
9 changes: 3 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@ classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -32,9 +29,9 @@ project_urls =
Tracker = https://github.com/jazzband/django-taggit/issues

[options]
python_requires = >=3.6
python_requires = >=3.8
packages = find:
install_requires = Django>=3.2
install_requires = Django>=4.1
include_package_data = true
zip_safe = false

Expand Down

0 comments on commit 1b241a3

Please sign in to comment.