Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGoogle committed Jan 13, 2020
1 parent a87d55f commit e24cf17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Humble Bundle plugin",
"platform": "humble",
"guid": "f0ca3d80-a432-4d35-a9e3-60f27161ac3a",
"version": "0.5.4",
"version": "0.6.0",
"description": "GOG Galaxy 2.0 integration",
"author": "Mesco",
"email": "mieszkoziemowit@gmail.com",
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def create_tag(c, tag=None):
tag = 'v' + __version__
branch = c.run("git rev-parse --abbrev-ref HEAD").stdout.strip()

print(f'New tag version for release will be: [{tag}] on [{branch}] branch. is it OK?')
print(f'New tag version will be: [{tag}] on [{branch}] branch. Is it OK? (make sure new version is committed)')
if input('y/n').lower() != 'y':
return

Expand Down Expand Up @@ -204,7 +204,7 @@ def release(c, automa=False):

build(c, output='build')
test(c, target='build')
asset_path = archive(c, target='build', zip_name=f'humble_{tag}_{PLATFORM[:3].lower()}')
asset_path = archive(c, target='build', zip_name=f'humble_{tag}_{PLATFORM[:3].lower()}.zip')

print(f'Uploading asset for {PLATFORM}: {asset_path}')
draft_release.upload_asset(asset_path)

0 comments on commit e24cf17

Please sign in to comment.