From 36be0eb402f17fd92788fd585bc5c2a82203faab Mon Sep 17 00:00:00 2001 From: "Asif Saif Uddin (Auvi)" Date: Mon, 16 Dec 2019 09:45:23 +0600 Subject: [PATCH] Bump version 4.4.0 --- .bumpversion.cfg | 2 +- Changelog.rst | 15 +++++++++++++-- README.rst | 15 ++++++++------- celery/__init__.py | 2 +- docs/changelog.rst | 2 +- docs/includes/introduction.txt | 2 +- 6 files changed, 25 insertions(+), 13 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ae694c81208..2132f7ba949 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.0rc5 +current_version = 4.4.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z\d]+)? diff --git a/Changelog.rst b/Changelog.rst index 872f821ed06..edb4ee0cb42 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -4,11 +4,22 @@ Change history ================ -This document contains change notes for bugfix releases in -the 4.x series, please see :ref:`whatsnew-4.4` for +This document contains change notes for bugfix & new features +in the 4.x series, please see :ref:`whatsnew-4.4` for an overview of what's new in Celery 4.4. +4.4.0 +======= +:release-date: 2019-12-16 9.45 A.M UTC+6:00 +:release-by: Asif Saif Uddin + +- This version is officially supported on CPython 2.7, +3.5, 3.6, 3.7 & 3.8 +and is also supported on PyPy2 & PyPy3. +- Kombu 4.6.7 + + 4.4.0rc5 ======== :release-date: 2019-12-07 21.05 A.M UTC+6:00 diff --git a/README.rst b/README.rst index f1293778acf..62f8c9b7b3b 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| -:Version: 4.4.0rc5 (cliffs) +:Version: 4.4.0 (cliffs) :Web: http://celeryproject.org/ :Download: https://pypi.org/project/celery/ :Source: https://github.com/celery/celery/ @@ -58,13 +58,14 @@ What do I need? Celery version 4.3 runs on, -- Python (2.7, 3.4, 3.5, 3.6, 3.7) -- PyPy2.7 (6.0) -- PyPy3.5 (6.0) +- Python (2.7, 3.8, 3.5, 3.6, 3.7) +- PyPy2.7 (7.2) +- PyPy3.5 (7.1) +- PyPy3.6 (7.6) -This is the last version to support Python 2.7, -and from the next version (Celery 5.x) Python 3.5 or newer is required. +4.x.x is the last version to support Python 2.7, +and from the next major version (Celery 5.x) Python 3.6 or newer is required. If you're running an older version of Python, you need to be running an older version of Celery: @@ -89,7 +90,7 @@ Get Started =========== If this is the first time you're trying to use Celery, or you're -new to Celery 4.2 coming from previous versions then you should read our +new to Celery 4.4 coming from previous versions then you should read our getting started tutorials: - `First steps with Celery`_ diff --git a/celery/__init__.py b/celery/__init__.py index 574d32624f4..51ae3809ed7 100644 --- a/celery/__init__.py +++ b/celery/__init__.py @@ -18,7 +18,7 @@ SERIES = 'cliffs' -__version__ = '4.4.0rc5' +__version__ = '4.4.0' __author__ = 'Ask Solem' __contact__ = 'auvipy@gmail.com' __homepage__ = 'http://celeryproject.org' diff --git a/docs/changelog.rst b/docs/changelog.rst index 5b20da335b1..93efd55ea19 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1 +1 @@ -.. include:: ../Changelog +.. include:: ../Changelog.rst diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index 7a34242063d..11ed04d3d95 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 4.4.0rc5 (cliffs) +:Version: 4.4.0 (cliffs) :Web: http://celeryproject.org/ :Download: https://pypi.org/project/celery/ :Source: https://github.com/celery/celery/