Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nu committed Oct 10, 2019
1 parent a991440 commit 2e21fff
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.22
current_version = 0.6.23
tag = True

[bumpversion:file:Makefile]
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ Vorta.dmg-Vagrant:
vagrant halt darwin64
cp -R bin/darwin/Sparkle.framework dist/Vorta.app/Contents/Frameworks/
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
rm -rf dist/vorta-0.6.22.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.22.dmg
rm -rf dist/vorta-0.6.23.dmg
sleep 2; appdmg appdmg.json dist/vorta-0.6.23.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 commit -m 'rebuild pages' --allow-empty
git push upstream gh-pages
git checkout master

pypi-release: translations-to-qm
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.
bumpversion patch
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = vorta
author = Manuel Riel
description = A GUI for BorgBackup
version = 0.6.22
version = 0.6.23
url = https://github.com/borgbase/vorta
keywords =
backup
Expand Down
2 changes: 1 addition & 1 deletion src/vorta/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.22'
__version__ = '0.6.23'
2 changes: 1 addition & 1 deletion src/vorta/assets/metadata/com.borgbase.Vorta.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</screenshot>
</screenshots>
<releases>
<release version="v0.6.22" date="2019-08-03">
<release version="v0.6.23" date="2019-10-10">
</release>
</releases>
<url type="bugtracker">https://github.com/borgbase/vorta/issues</url>
Expand Down
4 changes: 2 additions & 2 deletions vorta.spec
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ app = BUNDLE(exe,
info_plist={
'NSHighResolutionCapable': 'True',
'LSUIElement': '1',
'CFBundleShortVersionString': '0.6.22',
'CFBundleVersion': '0.6.22',
'CFBundleShortVersionString': '0.6.23',
'CFBundleVersion': '0.6.23',
'NSAppleEventsUsageDescription': 'Please allow',
'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml',
'LSEnvironment': {
Expand Down

0 comments on commit 2e21fff

Please sign in to comment.