Skip to content

Commit 5680223

Browse files
committed
Set version to 2.0.1.
1 parent 08dc675 commit 5680223

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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 3.0.0')
55+
args = docopt.docopt(__doc__, argv, version='Bashup 2.0.1')
5656

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

bashup/test/test_bashup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def __is_bashup_in_path():
191191
return False # pragma: no cover
192192

193193

194-
@temporary.temp_dir(make_cwd=True)
194+
@temporary.in_temp_dir()
195195
def __assert_compiled_bash(
196196
bash_binary,
197197
bashup_str,

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='3.0.0',
5+
version='2.0.1',
66
packages=(
77
'bashup',
88
'bashup.compile',

0 commit comments

Comments
 (0)