From c59c9ace0f1abde01bdbe40d6db51a36984c2b60 Mon Sep 17 00:00:00 2001 From: Mario Picciani Date: Wed, 16 Aug 2023 18:25:20 +0200 Subject: [PATCH] Bump version from 0.3.0 to 0.3.1 --- .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 10f7fe9..00c878f 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.0 +version: 0.3.1 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index cb01137..6726fa5 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.3.0 🌈" # <> -tag-template: 0.3.0 # <> +name-template: "0.3.1 🌈" # <> +tag-template: 0.3.1 # <> exclude-labels: - "skip-changelog" diff --git a/cookietemple.cfg b/cookietemple.cfg index 69f2c80..11900f1 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 [bumpversion_files_whitelisted] init_file = spectrum_io/__init__.py diff --git a/docs/conf.py b/docs/conf.py index fef6748..d5fda71 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # the built documents. # # The short X.Y version. -version = "0.3.0" +version = "0.3.1" # The full version, including alpha/beta/rc tags. -release = "0.3.0" +release = "0.3.1" # 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 6d5dbe2..cddd220 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spectrum_io" -version = "0.3.0" # <> +version = "0.3.1" # <> description = "IO related functionalities for oktoberfest." authors = ["Mario Picciani "] license = "MIT" diff --git a/spectrum_io/__init__.py b/spectrum_io/__init__.py index 3489132..0c30ef9 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.0" +__version__ = "0.3.1" import logging import logging.handlers diff --git a/spectrum_io/__main__.py b/spectrum_io/__main__.py index 2ec71dc..2d1358a 100644 --- a/spectrum_io/__main__.py +++ b/spectrum_io/__main__.py @@ -5,7 +5,7 @@ @click.command() -@click.version_option(version="0.3.0", message=click.style("spectrum_io Version: 0.3.0")) +@click.version_option(version="0.3.1", message=click.style("spectrum_io Version: 0.3.1")) def main() -> None: """spectrum_io."""