1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-02-22 14:20:41 +00:00

Bump version: 0.6.4 → 0.6.5

This commit is contained in:
Manu 2019-01-15 23:26:37 +08:00
parent badb966f4e
commit 6f5e4c5637
5 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.4
current_version = 0.6.5
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.4.zip Vorta.app
rm -rf dist/vorta-0.6.4.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.4.dmg
# sleep 2; cd dist; zip -9rq vorta-0.6.5.zip Vorta.app
rm -rf dist/vorta-0.6.5.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.5.dmg
github-release: Vorta.dmg
hub release create --attach=dist/vorta-0.6.4.dmg v0.6.4
hub release create --attach=dist/vorta-0.6.5.dmg v0.6.5
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.4.tar.gz
twine upload dist/vorta-0.6.5.tar.gz
bump-version:
bumpversion patch

View file

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

View file

@ -1 +1 @@
__version__ = '0.6.4'
__version__ = '0.6.5'

View file

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