diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d3a96b60f..e5554e13b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.7 +current_version = 0.6.8 commit = True tag = True diff --git a/Makefile b/Makefile index d50018a58..7ae4b1cd8 100644 --- a/Makefile +++ b/Makefile @@ -14,12 +14,12 @@ Vorta.app: translations-to-qm 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.6.7.zip Vorta.app - rm -rf dist/vorta-0.6.7.dmg - sleep 2; appdmg appdmg.json dist/vorta-0.6.7.dmg + # sleep 2; cd dist; zip -9rq vorta-0.6.8.zip Vorta.app + rm -rf dist/vorta-0.6.8.dmg + sleep 2; appdmg appdmg.json dist/vorta-0.6.8.dmg github-release: Vorta.dmg - hub release create --attach=dist/vorta-0.6.7.dmg v0.6.7 + hub release create --attach=dist/vorta-0.6.8.dmg v0.6.8 git checkout gh-pages git commit -m 'rebuild pages' --allow-empty git push upstream gh-pages @@ -27,7 +27,7 @@ github-release: Vorta.dmg pypi-release: translations-to-qm python setup.py sdist - twine upload dist/vorta-0.6.7.tar.gz + twine upload dist/vorta-0.6.8.tar.gz bump-version: ## Add new version tag and push to upstream repo. bumpversion patch diff --git a/setup.cfg b/setup.cfg index a8cd746c3..81db64a65 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = vorta author = Manuel Riel description = A GUI for BorgBackup -version = 0.6.7 +version = 0.6.8 url = https://github.com/borgbase/vorta keywords = backup diff --git a/src/vorta/_version.py b/src/vorta/_version.py index 400a10474..085bc8562 100644 --- a/src/vorta/_version.py +++ b/src/vorta/_version.py @@ -1 +1 @@ -__version__ = '0.6.7' +__version__ = '0.6.8' diff --git a/vorta.spec b/vorta.spec index 90dfad7c5..a7ee47426 100644 --- a/vorta.spec +++ b/vorta.spec @@ -56,8 +56,8 @@ app = BUNDLE(exe, info_plist={ 'NSHighResolutionCapable': 'True', 'LSUIElement': '1', - 'CFBundleShortVersionString': '0.6.7', - 'CFBundleVersion': '0.6.7', + 'CFBundleShortVersionString': '0.6.8', + 'CFBundleVersion': '0.6.8', 'NSAppleEventsUsageDescription': 'Please allow', 'SUFeedURL': 'https://borgbase.github.io/vorta/appcast.xml', })