Skip to content

Commit ad01c53

Browse files
committed
Bumped version to fix PyPI release.
1 parent e315f33 commit ad01c53

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,16 @@ See `this document for planned features`_.
137137
Changelog
138138
---------
139139
140+
**2.0.2**
141+
142+
- Fixed PyPI release.
143+
144+
145+
**2.0.1**
146+
147+
- Fixed - |Issue9|__
148+
149+
140150
**2.0.0**
141151
142152
- Fixed - |Issue7|__
@@ -192,6 +202,9 @@ Changelog
192202
193203
.. Issues
194204
205+
.. |Issue9| replace:: Issue #9: "Misc updates"
206+
__ https://github.com/themattrix/bashup/issues/9
207+
195208
.. |Issue7| replace:: Issue #7: "Named arguments in functions should use --arg=value instead of --arg value"
196209
__ https://github.com/themattrix/bashup/issues/7
197210

bashup/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def run_file(to_run, args, compile_fn=bash.compile_to_bash, run_fn=subprocess.ca
5252

5353

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

5757
if args['--in'] is None:
5858
return run_fn(to_run=args['--run'], args=tuple(args['<arg>']))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='bashup',
5-
version='2.0.1',
5+
version='2.0.2',
66
packages=(
77
'bashup',
88
'bashup.compile',

0 commit comments

Comments
 (0)