Skip to content

Commit

Permalink
Release v0.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jun 27, 2023
1 parent 3135842 commit e7e3f2c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 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.8 (2023-06-27)
================

Improvements
------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ What do I need?

celery-batches version runs on,

- Python (3.8, 3.9, 3.10)
- Python (3.8, 3.9, 3.10, 3.11)
- PyPy3 (7.6)

And is tested with Celery >= 5.0.
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-querysetsequence
=================================

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 = celery-batches
version = 0.7
version = 0.8
description = Experimental task class that buffers messages and processes them as a list.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down

0 comments on commit e7e3f2c

Please sign in to comment.