Bump version: 0.4.3 → 0.4.4

This commit is contained in:
Manu 2018-11-21 21:04:25 +08:00
parent 5872491f3e
commit e2b7107472
5 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.4.3 current_version = 0.4.4
commit = True commit = True
tag = True tag = True

View File

@ -6,13 +6,13 @@ 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.4.3.zip Vorta.app # sleep 2; cd dist; zip -9rq vorta-0.4.4.zip Vorta.app
rm -rf dist/vorta-0.4.3.dmg rm -rf dist/vorta-0.4.4.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.4.3.dmg sleep 2; appdmg appdmg.json dist/vorta-0.4.4.dmg
github-release: Vorta.dmg github-release: Vorta.dmg
pytest pytest
hub release create --prerelease --attach=dist/vorta-0.4.3.dmg v0.4.3 hub release create --prerelease --attach=dist/vorta-0.4.4.dmg v0.4.4
git checkout gh-pages git checkout gh-pages
git commit -m 'rebuild pages' --allow-empty git commit -m 'rebuild pages' --allow-empty
git push origin gh-pages git push origin gh-pages
@ -21,7 +21,7 @@ github-release: Vorta.dmg
pypi-release: pypi-release:
pytest pytest
python setup.py sdist python setup.py sdist
twine upload dist/vorta-0.4.3.tar.gz twine upload dist/vorta-0.4.4.tar.gz
travis-debug: travis-debug:
curl -s -X POST \ curl -s -X POST \

View File

@ -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.4.3 version = 0.4.4
url = https://github.com/borgbase/vorta url = https://github.com/borgbase/vorta
keywords = keywords =
backup backup

View File

@ -1 +1 @@
__version__ = '0.4.3' __version__ = '0.4.4'

View File

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