Skip to content

Commit

Permalink
Bump for release of v0.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Dec 10, 2021
1 parent 84b9bfc commit 7d16c81
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
#########

next
====
0.15 (2021-12-10)
=================

Features
--------
Expand Down
11 changes: 11 additions & 0 deletions RELEASING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Releasing django-querysetsequence
=================================

1. Bump the version in ``setup.cfg``, ``CHANGELOG.rst``, and ``docs/conf.py``.
2. Double check the trove classifiers in ``setup.cfg`` (they should match the
supported Python version in ``README.rst`` and ``tox.ini``).
3. Make a git commit.
4. Create a git tag: ``git tag <version>``
5. Build the package via ``python -m build``.
6. Run twine checks: ``twine check dist/*``
7. Upload to PyPI: ``twine upload dist/*``
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

project = "django-querysetsequence"
copyright = "2020, Patrick Cloke"
copyright = "2020 - 2021, Patrick Cloke"
author = "Patrick Cloke"

# The full version, including alpha/beta/rc tags
release = "0.14"
release = "0.15"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-querysetsequence
version = 0.15dev
version = 0.15
description = Chain together multiple (disparate) QuerySets to treat them as a single QuerySet.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down

0 comments on commit 7d16c81

Please sign in to comment.