Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Jun 19, 2010
1 parent 09f96e1 commit 8009d64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -311,7 +311,7 @@ to install a more recent stdeb.

::

STDEB_VERSION="0.5.1"
STDEB_VERSION="0.6.0"

# Download stdeb
wget http://pypi.python.org/packages/source/s/stdeb/stdeb-$STDEB_VERSION.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion scripts/pypi-install
Expand Up @@ -14,7 +14,7 @@ def myprint(mystr,fd=None):
else:
print >> fd, mystr

USER_AGENT = 'pypi-install/0.5.1+git ( http://github.com/astraw/stdeb )'
USER_AGENT = 'pypi-install/0.6.0 ( http://github.com/astraw/stdeb )'

def find_tar_gz(package_name, pypi_url = 'http://python.org/pypi',verbose=0):
transport = xmlrpclib.Transport()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@
setup(name='stdeb',
# Keep version in sync with stdeb/__init__.py, Install section
# of README.rst, and USER_AGENT in scripts/pypi-install.
version='0.5.1+git',
version='0.6.0',
author='Andrew Straw',
author_email='strawman@astraw.com',
description='Python to Debian source package conversion utility',
Expand Down
2 changes: 1 addition & 1 deletion stdeb/__init__.py
@@ -1,5 +1,5 @@
import logging
__version__ = '0.5.1+git' # keep in sync with ../setup.py
__version__ = '0.6.0' # keep in sync with ../setup.py

log = logging.getLogger('stdeb')
log.setLevel(logging.INFO)
Expand Down

0 comments on commit 8009d64

Please sign in to comment.