Browse Source

Bumps version to 3.0.1

Ask Solem 12 years ago
parent
commit
e95f708126
5 changed files with 6 additions and 3 deletions
  1. 2 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt
  5. 1 0
      extra/release/bump_version.py

+ 2 - 0
Changelog

@@ -9,6 +9,8 @@
 
 3.0.1
 =====
+:release-date: 2012-07-10 06:00 P.M BST
+:by: Ask Solem
 
 - Now depends on kombu 2.2.5
 

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
-:Version: 3.0.0 (Chiastic Slide)
+:Version: 3.0.1 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/

+ 1 - 1
celery/__init__.py

@@ -8,7 +8,7 @@
 from __future__ import absolute_import
 
 SERIES = 'Chiastic Slide'
-VERSION = (3, 0, 0)
+VERSION = (3, 0, 1)
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 3.0.0 (Chiastic Slide)
+:Version: 3.0.1 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/

+ 1 - 0
extra/release/bump_version.py

@@ -135,6 +135,7 @@ def bump(*files, **kwargs):
     files = [filetype_to_type(f) for f in files]
     versions = [v.parse() for v in files]
     current = list(reversed(sorted(versions)))[0]  # find highest
+    current = current.split()[0]  # only first sentence
 
     if version:
         next = from_str(version)