Skip to content

Commit

Permalink
Version 0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Aug 23, 2014
1 parent 2a2b7fa commit fc65a23
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='vpoller',
version='0.2.5',
version='0.2.9',
description='VMware vSphere Distributed Pollers',
author='Marin Atanasov Nikolov',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-client
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Examples:
"""

args = docopt(usage, version="0.1.0")
args = docopt(usage, version='0.2.9')

level = logging.DEBUG if args['--debug'] else logging.INFO

Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-proxy
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Options:
"""

args = docopt(usage, version="0.1.0")
args = docopt(usage, version='0.2.9')

level = logging.DEBUG if args['--debug'] else logging.INFO

Expand Down
2 changes: 1 addition & 1 deletion src/vpoller-worker
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Options:
[default: /var/log/vpoller/vpoller-worker.log]
"""

args = docopt(usage, version="0.1.0")
args = docopt(usage, version='0.2.9')

if args['--debug']:
level = logging.DEBUG
Expand Down

0 comments on commit fc65a23

Please sign in to comment.