Skip to content

Commit 7d16c81

Browse files
committed
Bump for release of v0.15.
1 parent 84b9bfc commit 7d16c81

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
#########
55

6-
next
7-
====
6+
0.15 (2021-12-10)
7+
=================
88

99
Features
1010
--------

RELEASING.rst

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

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
project = "django-querysetsequence"
3-
copyright = "2020, Patrick Cloke"
3+
copyright = "2020 - 2021, Patrick Cloke"
44
author = "Patrick Cloke"
55

66
# The full version, including alpha/beta/rc tags
7-
release = "0.14"
7+
release = "0.15"
88

99

1010
# -- General configuration ---------------------------------------------------

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-querysetsequence
3-
version = 0.15dev
3+
version = 0.15
44
description = Chain together multiple (disparate) QuerySets to treat them as a single QuerySet.
55
long_description = file: README.rst
66
long_description_content_type = text/x-rst

0 commit comments

Comments
 (0)