Skip to content

Commit

Permalink
Bump for release of v0.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Dec 14, 2021
1 parent 1d2743e commit 00bee19
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Changelog
#########

next
====
0.9 (December 14, 2021)
=======================

* Drop support for Django 3.0. (`#31 <https://github.com/clokep/django-render-block/pull/31>`_)
* Support Django 3.2 and 4.0. (`#27 <https://github.com/clokep/django-render-block/pull/27>`_,
`#31 <https://github.com/clokep/django-render-block/pull/31>`_)
* Switch continuous integration to GitHub Actions. (`#26 <https://github.com/clokep/django-render-block/pull/26>`_,
`#28 <https://github.com/clokep/django-render-block/pull/28>`_)
* Changed packaging to use setuptools declarative config in `setup.cfg`.
* Changed packaging to use setuptools declarative config in ``setup.cfg``.
(`#32 <https://github.com/clokep/django-render-block/pull/32>`_)

0.8.1 (October 15, 2020)
Expand Down
12 changes: 12 additions & 0 deletions RELEASING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Releasing django-render-block
=============================

1. Bump the version in ``setup.cfg``, and ``CHANGELOG.rst``.
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. Push to GitHub: ``git push origin main`` & ``git push --tags``
6. Build the package via ``python -m build``.
7. Run twine checks: ``twine check dist/*``
8. Upload to PyPI: ``twine upload dist/*``
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-render-block
version = 0.9dev
version = 0.9
description = Render a particular block from a template to a string.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ deps =
django22: Django>=2.2,<2.3
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0a1,<4.1
django40: Django>=4.0,<4.1
djangomain: https://codeload.github.com/django/django/zip/main

0 comments on commit 00bee19

Please sign in to comment.