Bump version: 0.6.13 → 0.6.14

This commit is contained in:
Manu 2019-03-24 18:47:31 +08:00
parent 414de1d36b
commit bf12aca2fb
5 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.13
current_version = 0.6.14
commit = True
tag = True

View File

@ -14,12 +14,12 @@ Vorta.app: translations-to-qm
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.13.zip Vorta.app
rm -rf dist/vorta-0.6.13.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.13.dmg
# sleep 2; cd dist; zip -9rq vorta-0.6.14.zip Vorta.app
rm -rf dist/vorta-0.6.14.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.14.dmg
github-release: Vorta.dmg
hub release create --attach=dist/vorta-0.6.13.dmg v0.6.13
hub release create --attach=dist/vorta-0.6.14.dmg v0.6.14
git checkout gh-pages
git commit -m 'rebuild pages' --allow-empty
git push upstream gh-pages
@ -27,7 +27,7 @@ github-release: Vorta.dmg
pypi-release: translations-to-qm
python setup.py sdist
twine upload dist/vorta-0.6.13.tar.gz
twine upload dist/vorta-0.6.14.tar.gz
bump-version: ## Add new version tag and push to upstream repo.
bumpversion patch

View File

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

View File

@ -1 +1 @@
__version__ = '0.6.13'
__version__ = '0.6.14'

View File

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