Browse Source

Bumps version to 4.0.0rc4

Ask Solem 8 years ago
parent
commit
8e8b428da3
5 changed files with 16 additions and 4 deletions
  1. 1 1
      Makefile
  2. 9 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 4 0
      docs/includes/installation.txt
  5. 1 1
      docs/includes/introduction.txt

+ 1 - 1
Makefile

@@ -108,7 +108,7 @@ readmecheck-unicode:
 	$(ICONV) -f ascii -t ascii $(README) >/dev/null
 
 readmecheck-rst:
-	-$(RST2HTML) --strict $(README) >$(DEVNULL)
+	-$(RST2HTML) $(README) >$(DEVNULL)
 
 readmecheck: readmecheck-unicode readmecheck-rst
 

+ 9 - 1
README.rst

@@ -6,7 +6,7 @@
 
 |build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
 
-:Version: 4.0.0rc3 (0today8)
+:Version: 4.0.0rc4 (0today8)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: https://github.com/celery/celery/
@@ -219,8 +219,10 @@ You can install Celery either via the Python Package Index (PyPI)
 or from source.
 
 To install using ``pip``:
+
 ::
 
+
     $ pip install -U Celery
 
 .. _bundles:
@@ -234,8 +236,10 @@ to install Celery and the dependencies for a given feature.
 You can specify these in your requirements or on the ``pip``
 command-line by using brackets. Multiple bundles can be specified by
 separating them by commas.
+
 ::
 
+
     $ pip install "celery[librabbitmq]"
 
     $ pip install "celery[librabbitmq,redis,auth,msgpack]"
@@ -321,8 +325,10 @@ Download the latest version of Celery from PyPI:
 http://pypi.python.org/pypi/celery/
 
 You can install it by doing the following,:
+
 ::
 
+
     $ tar xvfz celery-0.0.0.tar.gz
     $ cd celery-0.0.0
     $ python setup.py build
@@ -344,8 +350,10 @@ versions of ``kombu``, ``amqp``, ``billiard``, and ``vine``.
 
 You can install the latest snapshot of these using the following
 pip commands:
+
 ::
 
+
     $ pip install https://github.com/celery/celery/zipball/master#egg=celery
     $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard
     $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp

+ 1 - 1
celery/__init__.py

@@ -16,7 +16,7 @@ from collections import namedtuple
 
 SERIES = '0today8'
 
-__version__ = '4.0.0rc3'
+__version__ = '4.0.0rc4'
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'
 __homepage__ = 'http://celeryproject.org'

+ 4 - 0
docs/includes/installation.txt

@@ -8,6 +8,7 @@ or from source.
 
 To install using :command:`pip`:
 
+
 .. code-block:: console
 
     $ pip install -U Celery
@@ -24,6 +25,7 @@ You can specify these in your requirements or on the :command:`pip`
 command-line by using brackets. Multiple bundles can be specified by
 separating them by commas.
 
+
 .. code-block:: console
 
     $ pip install "celery[librabbitmq]"
@@ -112,6 +114,7 @@ http://pypi.python.org/pypi/celery/
 
 You can install it by doing the following,:
 
+
 .. code-block:: console
 
     $ tar xvfz celery-0.0.0.tar.gz
@@ -136,6 +139,7 @@ versions of :pypi:`kombu`, :pypi:`amqp`, :pypi:`billiard`, and :pypi:`vine`.
 You can install the latest snapshot of these using the following
 pip commands:
 
+
 .. code-block:: console
 
     $ pip install https://github.com/celery/celery/zipball/master#egg=celery

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 4.0.0rc3 (0today8)
+:Version: 4.0.0rc4 (0today8)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: https://github.com/celery/celery/