mirror of https://github.com/borgbase/vorta
Bump version: 0.6.18 → 0.6.19
This commit is contained in:
parent
cb995334d5
commit
893cbc0d5c
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.6.18
|
||||
current_version = 0.6.19
|
||||
commit = True
|
||||
tag = True
|
||||
|
||||
|
|
10
Makefile
10
Makefile
|
@ -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.18.zip Vorta.app
|
||||
rm -rf dist/vorta-0.6.18.dmg
|
||||
sleep 2; appdmg appdmg.json dist/vorta-0.6.18.dmg
|
||||
# sleep 2; cd dist; zip -9rq vorta-0.6.19.zip Vorta.app
|
||||
rm -rf dist/vorta-0.6.19.dmg
|
||||
sleep 2; appdmg appdmg.json dist/vorta-0.6.19.dmg
|
||||
|
||||
github-release: Vorta.dmg
|
||||
hub release create --attach=dist/vorta-0.6.18.dmg v0.6.18
|
||||
hub release create --attach=dist/vorta-0.6.19.dmg v0.6.19
|
||||
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.18.tar.gz
|
||||
twine upload dist/vorta-0.6.19.tar.gz
|
||||
|
||||
bump-version: ## Add new version tag and push to upstream repo.
|
||||
bumpversion patch
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = vorta
|
||||
author = Manuel Riel
|
||||
description = A GUI for BorgBackup
|
||||
version = 0.6.18
|
||||
version = 0.6.19
|
||||
url = https://github.com/borgbase/vorta
|
||||
keywords =
|
||||
backup
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.6.18'
|
||||
__version__ = '0.6.19'
|
||||
|
|
|
@ -55,8 +55,8 @@ app = BUNDLE(exe,
|
|||
info_plist={
|
||||
'NSHighResolutionCapable': 'True',
|
||||
'LSUIElement': '1',
|
||||
'CFBundleShortVersionString': '0.6.18',
|
||||
'CFBundleVersion': '0.6.18',
|
||||
'CFBundleShortVersionString': '0.6.19',
|
||||
'CFBundleVersion': '0.6.19',
|
||||
'NSAppleEventsUsageDescription': 'Please allow',
|
||||
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml',
|
||||
'LSEnvironment': {
|
||||
|
|
Loading…
Reference in New Issue