From f37e65c78364d4daf41ff5bbe611b7d4db3e99e6 Mon Sep 17 00:00:00 2001 From: EugeniaVoytik Date: Mon, 4 Apr 2022 15:26:20 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.9=20=E2=86=92=201.1.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- alphaviz/__init__.py | 2 +- misc/bumpversion.cfg | 2 +- release/one_click_linux_gui/control | 2 +- release/one_click_linux_gui/create_installer_linux.sh | 2 +- release/one_click_macos_gui/Info.plist | 4 ++-- release/one_click_macos_gui/create_installer_macos.sh | 4 ++-- release/one_click_macos_gui/distribution.xml | 2 +- release/one_click_windows_gui/alphaviz_innoinstaller.iss | 2 +- release/one_click_windows_gui/create_installer_windows.sh | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/alphaviz/__init__.py b/alphaviz/__init__.py index 94e158d..41e9657 100644 --- a/alphaviz/__init__.py +++ b/alphaviz/__init__.py @@ -1,7 +1,7 @@ #!python __project__ = "alphaviz" -__version__ = "1.1.9" +__version__ = "1.1.10" __license__ = "Apache" __description__ = "A interactive Dashboard to explore mass spectrometry data." __author__ = "Eugenia Voytik" diff --git a/misc/bumpversion.cfg b/misc/bumpversion.cfg index 2f00bc9..3d5c0c7 100644 --- a/misc/bumpversion.cfg +++ b/misc/bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.9 +current_version = 1.1.10 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/release/one_click_linux_gui/control b/release/one_click_linux_gui/control index 876c5b3..0b8e2bc 100644 --- a/release/one_click_linux_gui/control +++ b/release/one_click_linux_gui/control @@ -1,5 +1,5 @@ Package: alphaviz -Version: 1.1.9 +Version: 1.1.10 Architecture: all Maintainer: Mann Labs Description: alphaviz diff --git a/release/one_click_linux_gui/create_installer_linux.sh b/release/one_click_linux_gui/create_installer_linux.sh index 13e6075..aa3c52d 100644 --- a/release/one_click_linux_gui/create_installer_linux.sh +++ b/release/one_click_linux_gui/create_installer_linux.sh @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_linux_gui # Make sure you include the required extra packages and always use the stable or very-stable options! -pip install "../../dist/alphaviz-1.1.9-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.1.10-py3-none-any.whl[stable,gui-stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.10 diff --git a/release/one_click_macos_gui/Info.plist b/release/one_click_macos_gui/Info.plist index 9d1b09b..9489786 100644 --- a/release/one_click_macos_gui/Info.plist +++ b/release/one_click_macos_gui/Info.plist @@ -9,9 +9,9 @@ CFBundleIconFile alpha_logo.icns CFBundleIdentifier - alphaviz.1.1.9 + alphaviz.1.1.10 CFBundleShortVersionString - 1.1.9 + 1.1.10 CFBundleInfoDictionaryVersion 6.0 CFBundleName diff --git a/release/one_click_macos_gui/create_installer_macos.sh b/release/one_click_macos_gui/create_installer_macos.sh index 232a865..8cb0112 100644 --- a/release/one_click_macos_gui/create_installer_macos.sh +++ b/release/one_click_macos_gui/create_installer_macos.sh @@ -20,7 +20,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_macos_gui -pip install "../../dist/alphaviz-1.1.9-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.1.10-py3-none-any.whl[stable,gui-stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.10 @@ -40,5 +40,5 @@ cp ../../LICENSE.txt Resources/LICENSE.txt cp ../logos/alpha_logo.png Resources/alpha_logo.png chmod 777 scripts/* -pkgbuild --root dist/alphaviz --identifier de.mpg.biochem.alphaviz.app --version 1.1.9 --install-location /Applications/alphaviz.app --scripts scripts alphaviz.pkg +pkgbuild --root dist/alphaviz --identifier de.mpg.biochem.alphaviz.app --version 1.1.10 --install-location /Applications/alphaviz.app --scripts scripts alphaviz.pkg productbuild --distribution distribution.xml --resources Resources --package-path alphaviz.pkg dist/alphaviz_gui_installer_macos.pkg diff --git a/release/one_click_macos_gui/distribution.xml b/release/one_click_macos_gui/distribution.xml index 91b43b1..df0ec6c 100644 --- a/release/one_click_macos_gui/distribution.xml +++ b/release/one_click_macos_gui/distribution.xml @@ -1,6 +1,6 @@ - alphaviz 1.1.9 + alphaviz 1.1.10 diff --git a/release/one_click_windows_gui/alphaviz_innoinstaller.iss b/release/one_click_windows_gui/alphaviz_innoinstaller.iss index cdbeffc..219e729 100644 --- a/release/one_click_windows_gui/alphaviz_innoinstaller.iss +++ b/release/one_click_windows_gui/alphaviz_innoinstaller.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "alphaviz" -#define MyAppVersion "1.1.9" +#define MyAppVersion "1.1.10" #define MyAppPublisher "Max Planck Institute of Biochemistry and the University of Copenhagen, Mann Labs" #define MyAppURL "https://github.com/MannLabs/alphaviz" #define MyAppExeName "alphaviz_gui.exe" diff --git a/release/one_click_windows_gui/create_installer_windows.sh b/release/one_click_windows_gui/create_installer_windows.sh index e249f95..585d024 100644 --- a/release/one_click_windows_gui/create_installer_windows.sh +++ b/release/one_click_windows_gui/create_installer_windows.sh @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel # Setting up the local package cd release/one_click_windows_gui # Make sure you include the required extra packages and always use the stable or very-stable options! -pip install "../../dist/alphaviz-1.1.9-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.1.10-py3-none-any.whl[stable,gui-stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.10