Skip to content

Commit

Permalink
Bumped version to fix PyPI release.
Browse files Browse the repository at this point in the history
  • Loading branch information
themattrix committed Jun 1, 2016
1 parent e315f33 commit ad01c53
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions README.rst
Expand Up @@ -137,6 +137,16 @@ See `this document for planned features`_.
Changelog
---------
**2.0.2**
- Fixed PyPI release.
**2.0.1**
- Fixed - |Issue9|__
**2.0.0**
- Fixed - |Issue7|__
Expand Down Expand Up @@ -192,6 +202,9 @@ Changelog
.. Issues
.. |Issue9| replace:: Issue #9: "Misc updates"
__ https://github.com/themattrix/bashup/issues/9
.. |Issue7| replace:: Issue #7: "Named arguments in functions should use --arg=value instead of --arg value"
__ https://github.com/themattrix/bashup/issues/7
Expand Down
2 changes: 1 addition & 1 deletion bashup/__main__.py
Expand Up @@ -52,7 +52,7 @@ def run_file(to_run, args, compile_fn=bash.compile_to_bash, run_fn=subprocess.ca


def main(argv=None, run_fn=run_file, compile_fn=compile_file):
args = docopt.docopt(__doc__, argv, version='Bashup 2.0.1')
args = docopt.docopt(__doc__, argv, version='Bashup 2.0.2')

if args['--in'] is None:
return run_fn(to_run=args['--run'], args=tuple(args['<arg>']))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='bashup',
version='2.0.1',
version='2.0.2',
packages=(
'bashup',
'bashup.compile',
Expand Down

0 comments on commit ad01c53

Please sign in to comment.