1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-01-03 05:36:19 +00:00

Bump version: 0.4.1 → 0.4.2

This commit is contained in:
Manu 2018-11-21 16:26:26 +08:00
parent f9dbaa876d
commit 641c364927
5 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.1
current_version = 0.4.2
commit = True
tag = True

View file

@ -6,18 +6,18 @@ 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.4.1.zip Vorta.app
rm -rf dist/vorta-0.4.1.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.4.1.dmg
# sleep 2; cd dist; zip -9rq vorta-0.4.2.zip Vorta.app
rm -rf dist/vorta-0.4.2.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.4.2.dmg
github-release: Vorta.dmg
pytest
hub release create --prerelease --attach=dist/vorta-0.4.1.dmg v0.4.1
hub release create --prerelease --attach=dist/vorta-0.4.2.dmg v0.4.2
pypi-release:
pytest
python setup.py sdist
twine upload dist/vorta-0.4.1.tar.gz
twine upload dist/vorta-0.4.2.tar.gz
travis-debug:
curl -s -X POST \

View file

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

View file

@ -1 +1 @@
__version__ = '0.4.1'
__version__ = '0.4.2'

View file

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