From 178b08f039f3c7d14f7629128d1d34524d083c70 Mon Sep 17 00:00:00 2001 From: Mario Picciani Date: Fri, 22 Sep 2023 22:25:52 +0200 Subject: [PATCH] Bump version from 0.3.1 to 0.3.2 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 4 +++- spectrum_io/__init__.py | 2 +- spectrum_io/__main__.py | 2 +- 7 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index 00c878f..22da5f1 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.1 +version: 0.3.2 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 6726fa5..f3caebd 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.3.1 🌈" # <> -tag-template: 0.3.1 # <> +name-template: "0.3.2 🌈" # <> +tag-template: 0.3.2 # <> exclude-labels: - "skip-changelog" diff --git a/cookietemple.cfg b/cookietemple.cfg index 11900f1..e68513b 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 [bumpversion_files_whitelisted] init_file = spectrum_io/__init__.py diff --git a/docs/conf.py b/docs/conf.py index d5fda71..1ee140d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # the built documents. # # The short X.Y version. -version = "0.3.1" +version = "0.3.2" # The full version, including alpha/beta/rc tags. -release = "0.3.1" +release = "0.3.2" # 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 2e6f012..9fb27b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spectrum_io" -version = "0.3.1" # <> +version = "0.3.2" # <> description = "IO related functionalities for oktoberfest." authors = ["Mario Picciani "] license = "MIT" @@ -99,3 +99,5 @@ requires = [ "wheel" ] build-backend = "poetry.core.masonry.api" + +[tool.setuptools_scm] diff --git a/spectrum_io/__init__.py b/spectrum_io/__init__.py index 0c30ef9..09adc59 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.1" +__version__ = "0.3.2" import logging import logging.handlers diff --git a/spectrum_io/__main__.py b/spectrum_io/__main__.py index 2d1358a..59c34a2 100644 --- a/spectrum_io/__main__.py +++ b/spectrum_io/__main__.py @@ -5,7 +5,7 @@ @click.command() -@click.version_option(version="0.3.1", message=click.style("spectrum_io Version: 0.3.1")) +@click.version_option(version="0.3.2", message=click.style("spectrum_io Version: 0.3.2")) def main() -> None: """spectrum_io."""