From 9651649a5de1eed3fe8d2fce5738b6838e137dd1 Mon Sep 17 00:00:00 2001 From: WassimG Date: Thu, 10 Oct 2024 16:31:49 +0000 Subject: [PATCH] Bump version from 0.7.5 to 0.7.6 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- spectrum_fundamentals/__init__.py | 2 +- spectrum_fundamentals/__main__.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index c00f97f..d9b8bef 100644 --- a/.cookietemple.yml +++ b/.cookietemple.yml @@ -15,5 +15,5 @@ full_name: Victor Giurcoiu email: victor.giurcoiu@tum.de project_name: spectrum_fundamentals project_short_description: Fundamentals public repo -version: 0.7.5 +version: 0.7.6 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 92bced3..5cd19ed 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.7.5 " # <> -tag-template: 0.7.5 # <> +name-template: "0.7.6 " # <> +tag-template: 0.7.6 # <> exclude-labels: - "skip-changelog" diff --git a/cookietemple.cfg b/cookietemple.cfg index afd4846..2bc4adc 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.5 +current_version = 0.7.6 [bumpversion_files_whitelisted] init_file = spectrum_fundamentals/__init__.py diff --git a/docs/conf.py b/docs/conf.py index 528c6b8..cb18bb7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.7.5" +version = "0.7.6" # The full version, including alpha/beta/rc tags. -release = "0.7.5" +release = "0.7.6" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 9ef31fc..7cc1dbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spectrum_fundamentals" -version = "0.7.5" # <> +version = "0.7.6" # <> description = "Fundamental functions, annotation pipeline and constants for oktoberfest" authors = ["Wilhelmlab at Technical University of Munich"] license = "MIT" diff --git a/spectrum_fundamentals/__init__.py b/spectrum_fundamentals/__init__.py index 9bb0ba3..76cdc86 100644 --- a/spectrum_fundamentals/__init__.py +++ b/spectrum_fundamentals/__init__.py @@ -5,7 +5,7 @@ __author__ = """The Oktoberfest development team (Wilhelmlab at Technical University of Munich)""" __copyright__ = f"Copyright {datetime.now():%Y}, Wilhelmlab at Technical University of Munich" __license__ = "MIT" -__version__ = "0.7.5" +__version__ = "0.7.6" import logging import logging.handlers diff --git a/spectrum_fundamentals/__main__.py b/spectrum_fundamentals/__main__.py index 50831d4..6fade5c 100644 --- a/spectrum_fundamentals/__main__.py +++ b/spectrum_fundamentals/__main__.py @@ -5,7 +5,7 @@ @click.command() -@click.version_option(version="0.7.5", message=click.style("spectrum_fundamentals Version: 0.7.5")) +@click.version_option(version="0.7.6", message=click.style("spectrum_fundamentals Version: 0.7.6")) def main() -> None: """spectrum_fundamentals."""