Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mchwalisz committed Dec 14, 2017
1 parent 005066c commit f294357
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

Expand All @@ -10,3 +10,4 @@ replace = @click.version_option('v{new_version}')
[bumpversion:file:experiment/experiment.py]
search = @click.version_option('v{current_version}')
replace = @click.version_option('v{new_version}')

2 changes: 1 addition & 1 deletion experiment/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def select_one(param):
context_settings=dict(help_option_names=['-h', '--help']))
@click.option('-v', '--verbose', count=True,
help='Increase log verbosity level (up to 4)')
@click.version_option('v0.1.0')
@click.version_option('v0.2.0')
def cli(verbose):
level = {0: logging.WARNING, 1: logging.INFO, 2: logging.DEBUG}
if verbose < 3:
Expand Down
2 changes: 1 addition & 1 deletion images/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __render_rspec(url):
@click.option('--release', '-r', default='artful', help='Ubuntu release codename')
@click.option('--kernel', '-k', multiple=True, default='4.14.5',
help='Version number of mainline kernel to bake into image')
@click.version_option('v0.1.0')
@click.version_option('v0.2.0')
@click.pass_context
def cli(ctx, diskimage, release, kernel):
if ctx.invoked_subcommand is None:
Expand Down

0 comments on commit f294357

Please sign in to comment.