Skip to content

Commit

Permalink
vPoller release 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Nov 17, 2014
1 parent 10fe731 commit 625da75
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3.3'
version = '0.3.5'
# The full version, including alpha/beta/rc tags.
release = '0.3.3'
release = '0.3.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='vpoller',
version='0.3.3',
version='0.3.5',
description='Distributed VMware vSphere API Proxy',
long_description=open('README.rst').read(),
author='Marin Atanasov Nikolov',
Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-client
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Examples:
"""

args = docopt(usage, version='0.3.3')
args = docopt(usage, version='0.3.5')

level = logging.DEBUG if args['--debug'] else logging.INFO
logging.basicConfig(
Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-proxy
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Options:
"""

args = docopt(usage, version='0.3.3')
args = docopt(usage, version='0.3.5')

if not os.path.exists(args['--file']):
raise SystemExit, 'Configuration file %s does not exist'
Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-worker
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Options:
"""

args = docopt(usage, version='0.3.3')
args = docopt(usage, version='0.3.5')

if not os.path.exists(args['--file']):
raise SystemExit, 'Configuration file %s does not exist' % args['--file']
Expand Down

0 comments on commit 625da75

Please sign in to comment.