From e544c1bdb145faf7db645623949858bf03cf8616 Mon Sep 17 00:00:00 2001 From: Mario Picciani Date: Fri, 10 Nov 2023 18:21:40 +0100 Subject: [PATCH] Bump version from 0.3.3 to 0.3.4 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- spectrum_io/__init__.py | 2 +- spectrum_io/__main__.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index d1ce3d2..c761a22 100644 --- a/.cookietemple.yml +++ b/.cookietemple.yml @@ -15,5 +15,5 @@ full_name: Mario Picciani email: mario.picciani@tum.de project_name: spectrum_io project_short_description: IO related functionalities for oktoberfest. -version: 0.3.3 +version: 0.3.4 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d927b44..6a52a46 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.3.3 🌈" # <> -tag-template: 0.3.3 # <> +name-template: "0.3.4 🌈" # <> +tag-template: 0.3.4 # <> exclude-labels: - "skip-changelog" diff --git a/cookietemple.cfg b/cookietemple.cfg index b216c78..40d709c 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.3 +current_version = 0.3.4 [bumpversion_files_whitelisted] init_file = spectrum_io/__init__.py diff --git a/docs/conf.py b/docs/conf.py index c8412b0..155a5f4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # the built documents. # # The short X.Y version. -version = "0.3.3" +version = "0.3.4" # The full version, including alpha/beta/rc tags. -release = "0.3.3" +release = "0.3.4" # 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 09f8db8..476b0c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spectrum_io" -version = "0.3.3" # <> +version = "0.3.4" # <> description = "IO related functionalities for oktoberfest." authors = ["Mario Picciani "] license = "MIT" diff --git a/spectrum_io/__init__.py b/spectrum_io/__init__.py index d37409b..40e11bf 100644 --- a/spectrum_io/__init__.py +++ b/spectrum_io/__init__.py @@ -2,7 +2,7 @@ __author__ = "Mario Picciani" __email__ = "mario.picciani@tum.de" -__version__ = "0.3.3" +__version__ = "0.3.4" import logging import logging.handlers diff --git a/spectrum_io/__main__.py b/spectrum_io/__main__.py index 5237ba4..7c5f863 100644 --- a/spectrum_io/__main__.py +++ b/spectrum_io/__main__.py @@ -5,7 +5,7 @@ @click.command() -@click.version_option(version="0.3.3", message=click.style("spectrum_io Version: 0.3.3")) +@click.version_option(version="0.3.4", message=click.style("spectrum_io Version: 0.3.4")) def main() -> None: """spectrum_io."""