mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 15:57:34 +00:00
Bump version: 0.5.3 → 0.5.4
This commit is contained in:
parent
97fcf08934
commit
00760d912d
5 changed files with 10 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.5.3
|
||||
current_version = 0.5.4
|
||||
commit = 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
|
||||
|
||||
Vorta.dmg: Vorta.app
|
||||
# sleep 2; cd dist; zip -9rq vorta-0.5.3.zip Vorta.app
|
||||
rm -rf dist/vorta-0.5.3.dmg
|
||||
sleep 2; appdmg appdmg.json dist/vorta-0.5.3.dmg
|
||||
# sleep 2; cd dist; zip -9rq vorta-0.5.4.zip Vorta.app
|
||||
rm -rf dist/vorta-0.5.4.dmg
|
||||
sleep 2; appdmg appdmg.json dist/vorta-0.5.4.dmg
|
||||
|
||||
github-release: Vorta.dmg
|
||||
hub release create --prerelease --attach=dist/vorta-0.5.3.dmg v0.5.3
|
||||
hub release create --prerelease --attach=dist/vorta-0.5.4.dmg v0.5.4
|
||||
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.5.3.tar.gz
|
||||
twine upload dist/vorta-0.5.4.tar.gz
|
||||
|
||||
bump-version:
|
||||
git log $$(git describe --tags --abbrev=0)..HEAD --pretty=format:"- %s"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = vorta
|
||||
author = Manuel Riel
|
||||
description = A GUI for BorgBackup
|
||||
version = 0.5.3
|
||||
version = 0.5.4
|
||||
url = https://github.com/borgbase/vorta
|
||||
keywords =
|
||||
backup
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '0.5.3'
|
||||
__version__ = '0.5.4'
|
||||
|
|
|
@ -43,8 +43,8 @@ app = BUNDLE(exe,
|
|||
info_plist={
|
||||
'NSHighResolutionCapable': 'True',
|
||||
'LSUIElement': '1',
|
||||
'CFBundleShortVersionString': '0.5.3',
|
||||
'CFBundleVersion': '0.5.3',
|
||||
'CFBundleShortVersionString': '0.5.4',
|
||||
'CFBundleVersion': '0.5.4',
|
||||
'NSAppleEventsUsageDescription': 'Please allow',
|
||||
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast-pre.xml'
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue