Bump version up to 1.1.0, and updated AUTHORS file
This commit is contained in:
commit
f99577ea93
12
AUTHORS
12
AUTHORS
@ -16,6 +16,16 @@ Chuck Thier
|
|||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
Chmouel Boudjnah
|
Chmouel Boudjnah
|
||||||
|
Anne Gentle
|
||||||
|
Clay Gerrard
|
||||||
|
David Goetz
|
||||||
|
Soren Hansen
|
||||||
|
Paul Jimenez
|
||||||
|
Brian K. Jones
|
||||||
Ed Leafe
|
Ed Leafe
|
||||||
Conrad Weidenkeller
|
Andrew Clay Shafer
|
||||||
Monty Taylor
|
Monty Taylor
|
||||||
|
Caleb Tennis
|
||||||
|
Kapil Thangavelu
|
||||||
|
Conrad Weidenkeller
|
||||||
|
Cory Wright
|
||||||
|
@ -61,9 +61,10 @@ copyright = u'2010, OpenStack, LLC.'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.0'
|
from swift import __version__
|
||||||
|
version = __version__.rsplit('.', 1)[0]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '1.0.2'
|
release = __version__
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -58,10 +58,7 @@ Instructions for Building Debian Packages for Swift
|
|||||||
apt-get install python-software-properties
|
apt-get install python-software-properties
|
||||||
add-apt-repository ppa:swift-core/ppa
|
add-apt-repository ppa:swift-core/ppa
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install curl gcc bzr python-configobj python-coverage python-dev
|
apt-get install curl gcc bzr python-configobj python-coverage python-dev python-nose python-setuptools python-simplejson python-xattr python-webob python-eventlet python-greenlet debhelper python-sphinx python-all python-openssl python-pastedeploy bzr-builddeb
|
||||||
python-nose python-setuptools python-simplejson python-xattr
|
|
||||||
python-webob python-eventlet python-greenlet debhelper python-sphinx
|
|
||||||
python-all python-openssl python-pastedeploy
|
|
||||||
|
|
||||||
* As you
|
* As you
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -19,6 +19,7 @@ from setuptools.command.sdist import sdist
|
|||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
from swift import __version__ as version
|
||||||
|
|
||||||
class local_sdist(sdist):
|
class local_sdist(sdist):
|
||||||
"""Customized sdist hook - builds the ChangeLog file from VC first"""
|
"""Customized sdist hook - builds the ChangeLog file from VC first"""
|
||||||
@ -36,7 +37,6 @@ class local_sdist(sdist):
|
|||||||
|
|
||||||
|
|
||||||
name = 'swift'
|
name = 'swift'
|
||||||
version = '1.0.2'
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=name,
|
name=name,
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
__version__ = '1.1.0'
|
Loading…
x
Reference in New Issue
Block a user