From 70cdeb11351e7a149c4ad1f02306a6eb0b2ce58b Mon Sep 17 00:00:00 2001 From: zhouxiexuan Date: Tue, 19 Dec 2023 20:05:05 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.15=20=E2=86=92=201.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- alphaviz/__init__.py | 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/.bumpversion.cfg b/.bumpversion.cfg index b8c191c..1c6ca83 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.15 +current_version = 1.2.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/alphaviz/__init__.py b/alphaviz/__init__.py index 4ec0dd5..df596f2 100644 --- a/alphaviz/__init__.py +++ b/alphaviz/__init__.py @@ -1,7 +1,7 @@ #!python __project__ = "alphaviz" -__version__ = "1.1.15" +__version__ = "1.2.0" __license__ = "Apache" __description__ = "A interactive Dashboard to explore mass spectrometry data." __author__ = "Eugenia Voytik" diff --git a/release/one_click_linux_gui/control b/release/one_click_linux_gui/control index d800c4b..53e0c5e 100644 --- a/release/one_click_linux_gui/control +++ b/release/one_click_linux_gui/control @@ -1,5 +1,5 @@ Package: alphaviz -Version: 1.1.15 +Version: 1.2.0 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 1c5ce45..8eb7204 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.15-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.2.0-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 d353bcd..9fe2dd1 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.15 + alphaviz.1.2.0 CFBundleShortVersionString - 1.1.15 + 1.2.0 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 dc29bcc..988fe4d 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.15-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.2.0-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.15 --install-location /Applications/alphaviz.app --scripts scripts alphaviz.pkg +pkgbuild --root dist/alphaviz --identifier de.mpg.biochem.alphaviz.app --version 1.2.0 --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 491d5b2..3c38a85 100644 --- a/release/one_click_macos_gui/distribution.xml +++ b/release/one_click_macos_gui/distribution.xml @@ -1,6 +1,6 @@ - alphaviz 1.1.15 + alphaviz 1.2.0 diff --git a/release/one_click_windows_gui/alphaviz_innoinstaller.iss b/release/one_click_windows_gui/alphaviz_innoinstaller.iss index f21ca40..fb27ec0 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.15" +#define MyAppVersion "1.2.0" #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 8e2e3da..1a6e630 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.15-py3-none-any.whl[stable,gui-stable]" +pip install "../../dist/alphaviz-1.2.0-py3-none-any.whl[stable,gui-stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.10