mirror of https://github.com/borgbase/vorta
Bump version
This commit is contained in:
parent
a991440b3d
commit
2e21fff768
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.6.22
|
current_version = 0.6.23
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
[bumpversion:file:Makefile]
|
[bumpversion:file:Makefile]
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -21,14 +21,14 @@ Vorta.dmg-Vagrant:
|
||||||
vagrant halt darwin64
|
vagrant halt darwin64
|
||||||
cp -R bin/darwin/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
|
cp -R bin/darwin/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
|
||||||
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
|
||||||
sleep 2; appdmg appdmg.json dist/vorta-0.6.22.dmg
|
sleep 2; appdmg appdmg.json dist/vorta-0.6.23.dmg
|
||||||
|
|
||||||
Vorta.dmg: Vorta.app
|
Vorta.dmg: Vorta.app
|
||||||
rm -rf dist/vorta-0.6.22.dmg
|
rm -rf dist/vorta-0.6.23.dmg
|
||||||
sleep 2; appdmg appdmg.json dist/vorta-0.6.22.dmg
|
sleep 2; appdmg appdmg.json dist/vorta-0.6.23.dmg
|
||||||
|
|
||||||
github-release: Vorta.dmg
|
github-release: Vorta.dmg
|
||||||
hub release create --attach=dist/vorta-0.6.22.dmg v0.6.22
|
hub release create --attach=dist/vorta-0.6.23.dmg v0.6.23
|
||||||
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
|
||||||
|
@ -36,7 +36,7 @@ github-release: Vorta.dmg
|
||||||
|
|
||||||
pypi-release: translations-to-qm
|
pypi-release: translations-to-qm
|
||||||
python setup.py sdist
|
python setup.py sdist
|
||||||
twine upload dist/vorta-0.6.22.tar.gz
|
twine upload dist/vorta-0.6.23.tar.gz
|
||||||
|
|
||||||
bump-version: ## Add new version tag and push to upstream repo.
|
bump-version: ## Add new version tag and push to upstream repo.
|
||||||
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.22
|
version = 0.6.23
|
||||||
url = https://github.com/borgbase/vorta
|
url = https://github.com/borgbase/vorta
|
||||||
keywords =
|
keywords =
|
||||||
backup
|
backup
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.6.22'
|
__version__ = '0.6.23'
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<releases>
|
<releases>
|
||||||
<release version="v0.6.22" date="2019-08-03">
|
<release version="v0.6.23" date="2019-10-10">
|
||||||
</release>
|
</release>
|
||||||
</releases>
|
</releases>
|
||||||
<url type="bugtracker">https://github.com/borgbase/vorta/issues</url>
|
<url type="bugtracker">https://github.com/borgbase/vorta/issues</url>
|
||||||
|
|
|
@ -55,8 +55,8 @@ app = BUNDLE(exe,
|
||||||
info_plist={
|
info_plist={
|
||||||
'NSHighResolutionCapable': 'True',
|
'NSHighResolutionCapable': 'True',
|
||||||
'LSUIElement': '1',
|
'LSUIElement': '1',
|
||||||
'CFBundleShortVersionString': '0.6.22',
|
'CFBundleShortVersionString': '0.6.23',
|
||||||
'CFBundleVersion': '0.6.22',
|
'CFBundleVersion': '0.6.23',
|
||||||
'NSAppleEventsUsageDescription': 'Please allow',
|
'NSAppleEventsUsageDescription': 'Please allow',
|
||||||
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml',
|
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml',
|
||||||
'LSEnvironment': {
|
'LSEnvironment': {
|
||||||
|
|
Loading…
Reference in New Issue