From 348fc7b4328a1117d6092f3fdd1e86b6e03f0801 Mon Sep 17 00:00:00 2001 From: elena-krismer Date: Tue, 4 Jul 2023 10:41:22 +0200 Subject: [PATCH] bumpversion 0.6.2 -> 0.6.3 --- .bumpversion.cfg | 2 +- alphastats/__init__.py | 2 +- docs/conf.py | 2 +- docs/requirements_docs.txt | 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 | 2 +- release/one_click_macos_gui/create_installer_macos.sh | 2 +- release/one_click_macos_gui/distribution.xml | 2 +- release/one_click_windows_gui/alphastats_innoinstaller.iss | 2 +- release/one_click_windows_gui/create_installer_windows.sh | 2 +- setup.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 693bf7ed..93ab4fe9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.6.3 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/alphastats/__init__.py b/alphastats/__init__.py index 9d464759..7566c764 100644 --- a/alphastats/__init__.py +++ b/alphastats/__init__.py @@ -1,5 +1,5 @@ __project__ = "alphastats" -__version__ = "0.6.2" +__version__ = "0.6.3" __license__ = "Apache" __description__ = "An open-source Python package for Mass Spectrometry Analysis" __author__ = "Mann Labs" diff --git a/docs/conf.py b/docs/conf.py index 57fd7fa5..f1a0dbf3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Elena Krismer" # The full version, including alpha/beta/rc tags -release = "0.6.2" +release = "0.6.3" # -- General configuration --------------------------------------------------- diff --git a/docs/requirements_docs.txt b/docs/requirements_docs.txt index 96ca95a9..cf8d5d38 100644 --- a/docs/requirements_docs.txt +++ b/docs/requirements_docs.txt @@ -1,4 +1,4 @@ -alphastats==0.6.1 +alphastats==0.6.3 altair==4.2.0 anndata==0.8.0 attrs==22.1.0 diff --git a/release/one_click_linux_gui/control b/release/one_click_linux_gui/control index 41cb2552..d970e2e4 100644 --- a/release/one_click_linux_gui/control +++ b/release/one_click_linux_gui/control @@ -1,5 +1,5 @@ Package: alphastats -Version: 0.6.2 +Version: 0.6.3 Architecture: all Maintainer: MannLabs Description: alphastats diff --git a/release/one_click_linux_gui/create_installer_linux.sh b/release/one_click_linux_gui/create_installer_linux.sh index ee2dcbaf..feaeaefb 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/alphastats-0.6.2-py3-none-any.whl" +pip install "../../dist/alphastats-0.6.3-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/release/one_click_macos_gui/Info.plist b/release/one_click_macos_gui/Info.plist index c0f30f00..0b12ef92 100644 --- a/release/one_click_macos_gui/Info.plist +++ b/release/one_click_macos_gui/Info.plist @@ -9,7 +9,7 @@ CFBundleIconFile alphapeptstats_logo.icns CFBundleIdentifier - alphastats.0.6.2 + alphastats.0.6.3 CFBundleShortVersionString 0.6.0 CFBundleInfoDictionaryVersion diff --git a/release/one_click_macos_gui/create_installer_macos.sh b/release/one_click_macos_gui/create_installer_macos.sh index 525c03bc..5aed0a56 100755 --- 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/alphastats-0.6.2-py3-none-any.whl" +pip install "../../dist/alphastats-0.6.3-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/release/one_click_macos_gui/distribution.xml b/release/one_click_macos_gui/distribution.xml index ddc87a29..e68af198 100644 --- a/release/one_click_macos_gui/distribution.xml +++ b/release/one_click_macos_gui/distribution.xml @@ -1,6 +1,6 @@ - AlphaPeptStats 0.6.2 + AlphaPeptStats 0.6.3 diff --git a/release/one_click_windows_gui/alphastats_innoinstaller.iss b/release/one_click_windows_gui/alphastats_innoinstaller.iss index a59c8f6a..5aa5efb3 100644 --- a/release/one_click_windows_gui/alphastats_innoinstaller.iss +++ b/release/one_click_windows_gui/alphastats_innoinstaller.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "AlphaPeptStats" -#define MyAppVersion "0.6.2" +#define MyAppVersion "0.6.3" #define MyAppPublisher "MannLabs" #define MyAppURL "https://github.com/MannLabs/alphapeptstats" #define MyAppExeName "alphastats_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 3f2e0aad..98839aaa 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/alphastats-0.6.2-py3-none-any.whl" +pip install "../../dist/alphastats-0.6.3-py3-none-any.whl" # Creating the stand-alone pyinstaller folder pip install pyinstaller==5.8 diff --git a/setup.py b/setup.py index b47f1009..c2491b82 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def create_pip_wheel(): requirements = get_requirements() setuptools.setup( name="alphastats", - version="0.6.2", + version="0.6.3", license="Apache", description="An open-source Python package for automated and scalable statistical analysis of mass spectrometry-based proteomics", long_description=get_long_description(),