Bump version: 0.6.0 → 0.6.1

This commit is contained in:
Manu 2018-12-14 16:05:01 +08:00
parent 4f6137207b
commit c66391e6fa
5 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
tag = True

View File

@ -6,12 +6,12 @@ Vorta.app:
cd dist; codesign --deep --sign 'Developer ID Application: Manuel Riel (CNMSCAXT48)' Vorta.app
Vorta.dmg: Vorta.app
# sleep 2; cd dist; zip -9rq vorta-0.6.0.zip Vorta.app
rm -rf dist/vorta-0.6.0.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.0.dmg
# sleep 2; cd dist; zip -9rq vorta-0.6.1.zip Vorta.app
rm -rf dist/vorta-0.6.1.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.1.dmg
github-release: Vorta.dmg
hub release create --prerelease --attach=dist/vorta-0.6.0.dmg v0.6.0
hub release create --prerelease --attach=dist/vorta-0.6.1.dmg v0.6.1
git checkout gh-pages
git commit -m 'rebuild pages' --allow-empty
git push upstream gh-pages
@ -19,7 +19,7 @@ github-release: Vorta.dmg
pypi-release:
python setup.py sdist
twine upload dist/vorta-0.6.0.tar.gz
twine upload dist/vorta-0.6.1.tar.gz
bump-version:
git log $$(git describe --tags --abbrev=0)..HEAD --pretty=format:"- %s"

View File

@ -2,7 +2,7 @@
name = vorta
author = Manuel Riel
description = A GUI for BorgBackup
version = 0.6.0
version = 0.6.1
url = https://github.com/borgbase/vorta
keywords =
backup

View File

@ -1 +1 @@
__version__ = '0.6.0'
__version__ = '0.6.1'

View File

@ -43,8 +43,8 @@ app = BUNDLE(exe,
info_plist={
'NSHighResolutionCapable': 'True',
'LSUIElement': '1',
'CFBundleShortVersionString': '0.6.0',
'CFBundleVersion': '0.6.0',
'CFBundleShortVersionString': '0.6.1',
'CFBundleVersion': '0.6.1',
'NSAppleEventsUsageDescription': 'Please allow',
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml'
},