mirror of https://github.com/borgbase/vorta
Bump version: 0.6.1 → 0.6.2
This commit is contained in:
parent
b64b446add
commit
8efaaae08f
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.6.1
|
current_version = 0.6.2
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -6,12 +6,12 @@ Vorta.app:
|
||||||
cd dist; codesign --deep --sign 'Developer ID Application: Manuel Riel (CNMSCAXT48)' Vorta.app
|
cd dist; codesign --deep --sign 'Developer ID Application: Manuel Riel (CNMSCAXT48)' Vorta.app
|
||||||
|
|
||||||
Vorta.dmg: Vorta.app
|
Vorta.dmg: Vorta.app
|
||||||
# sleep 2; cd dist; zip -9rq vorta-0.6.1.zip Vorta.app
|
# sleep 2; cd dist; zip -9rq vorta-0.6.2.zip Vorta.app
|
||||||
rm -rf dist/vorta-0.6.1.dmg
|
rm -rf dist/vorta-0.6.2.dmg
|
||||||
sleep 2; appdmg appdmg.json dist/vorta-0.6.1.dmg
|
sleep 2; appdmg appdmg.json dist/vorta-0.6.2.dmg
|
||||||
|
|
||||||
github-release: Vorta.dmg
|
github-release: Vorta.dmg
|
||||||
hub release create --attach=dist/vorta-0.6.1.dmg v0.6.1
|
hub release create --attach=dist/vorta-0.6.2.dmg v0.6.2
|
||||||
git checkout gh-pages
|
git checkout gh-pages
|
||||||
git commit -m 'rebuild pages' --allow-empty
|
git commit -m 'rebuild pages' --allow-empty
|
||||||
git push upstream gh-pages
|
git push upstream gh-pages
|
||||||
|
@ -19,7 +19,7 @@ github-release: Vorta.dmg
|
||||||
|
|
||||||
pypi-release:
|
pypi-release:
|
||||||
python setup.py sdist
|
python setup.py sdist
|
||||||
twine upload dist/vorta-0.6.1.tar.gz
|
twine upload dist/vorta-0.6.2.tar.gz
|
||||||
|
|
||||||
bump-version:
|
bump-version:
|
||||||
bumpversion patch
|
bumpversion patch
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name = vorta
|
name = vorta
|
||||||
author = Manuel Riel
|
author = Manuel Riel
|
||||||
description = A GUI for BorgBackup
|
description = A GUI for BorgBackup
|
||||||
version = 0.6.1
|
version = 0.6.2
|
||||||
url = https://github.com/borgbase/vorta
|
url = https://github.com/borgbase/vorta
|
||||||
keywords =
|
keywords =
|
||||||
backup
|
backup
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.6.1'
|
__version__ = '0.6.2'
|
||||||
|
|
|
@ -43,8 +43,8 @@ app = BUNDLE(exe,
|
||||||
info_plist={
|
info_plist={
|
||||||
'NSHighResolutionCapable': 'True',
|
'NSHighResolutionCapable': 'True',
|
||||||
'LSUIElement': '1',
|
'LSUIElement': '1',
|
||||||
'CFBundleShortVersionString': '0.6.1',
|
'CFBundleShortVersionString': '0.6.2',
|
||||||
'CFBundleVersion': '0.6.1',
|
'CFBundleVersion': '0.6.2',
|
||||||
'NSAppleEventsUsageDescription': 'Please allow',
|
'NSAppleEventsUsageDescription': 'Please allow',
|
||||||
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml'
|
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml'
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue