diff --git a/misc/bumpversion.cfg b/misc/bumpversion.cfg index 89b3e56..bc5ab6b 100644 --- a/misc/bumpversion.cfg +++ b/misc/bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.8 +current_version = 0.0.9 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 e7c68d6..dfc7f34 100644 --- a/release/one_click_linux_gui/control +++ b/release/one_click_linux_gui/control @@ -1,5 +1,5 @@ Package: structuremap -Version: 0.0.8 +Version: 0.0.9 Architecture: all Maintainer: Mann Labs Description: structuremap diff --git a/release/one_click_linux_gui/create_installer_linux.sh b/release/one_click_linux_gui/create_installer_linux.sh index 4fb1530..d768460 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/structuremap-0.0.8-py3-none-any.whl[stable]" +pip install "../../dist/structuremap-0.0.9-py3-none-any.whl[stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.2 diff --git a/release/one_click_macos_gui/Info.plist b/release/one_click_macos_gui/Info.plist index fd5176d..517f442 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 - structuremap.0.0.8 + structuremap.0.0.9 CFBundleShortVersionString - 0.0.8 + 0.0.9 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 da17dc3..bec8a19 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/structuremap-0.0.8-py3-none-any.whl[stable]" +pip install "../../dist/structuremap-0.0.9-py3-none-any.whl[stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.2 @@ -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/structuremap --identifier de.mpg.biochem.structuremap.app --version 0.0.8 --install-location /Applications/structuremap.app --scripts scripts structuremap.pkg +pkgbuild --root dist/structuremap --identifier de.mpg.biochem.structuremap.app --version 0.0.9 --install-location /Applications/structuremap.app --scripts scripts structuremap.pkg productbuild --distribution distribution.xml --resources Resources --package-path structuremap.pkg dist/structuremap_gui_installer_macos.pkg diff --git a/release/one_click_macos_gui/distribution.xml b/release/one_click_macos_gui/distribution.xml index 07cf427..52ee02c 100644 --- a/release/one_click_macos_gui/distribution.xml +++ b/release/one_click_macos_gui/distribution.xml @@ -1,6 +1,6 @@ - structuremap 0.0.8 + structuremap 0.0.9 diff --git a/release/one_click_windows_gui/create_installer_windows.sh b/release/one_click_windows_gui/create_installer_windows.sh index 9563654..f9a95da 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/structuremap-0.0.8-py3-none-any.whl[stable]" +pip install "../../dist/structuremap-0.0.9-py3-none-any.whl[stable]" # Creating the stand-alone pyinstaller folder pip install pyinstaller==4.2 diff --git a/release/one_click_windows_gui/structuremap_innoinstaller.iss b/release/one_click_windows_gui/structuremap_innoinstaller.iss index 78eef6f..93c435f 100644 --- a/release/one_click_windows_gui/structuremap_innoinstaller.iss +++ b/release/one_click_windows_gui/structuremap_innoinstaller.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "structuremap" -#define MyAppVersion "0.0.8" +#define MyAppVersion "0.0.9" #define MyAppPublisher "Max Planck Institute of Biochemistry and the University of Copenhagen, Mann Labs" #define MyAppURL "https://github.com/MannLabs/structuremap" #define MyAppExeName "structuremap_gui.exe" diff --git a/structuremap/__init__.py b/structuremap/__init__.py index 0e90289..a4782ea 100644 --- a/structuremap/__init__.py +++ b/structuremap/__init__.py @@ -2,7 +2,7 @@ __project__ = "structuremap" -__version__ = "0.0.8" +__version__ = "0.0.9" __license__ = "Apache" __description__ = "An open-source Python package of the AlphaPept ecosystem" __author__ = "Isabell Bludau & Mann Labs"