From 15417cebea6673ef218b4424ba88aa5ebaf7d80c Mon Sep 17 00:00:00 2001 From: zethson Date: Thu, 25 Nov 2021 14:36:31 +0100 Subject: [PATCH] Bump version from 0.11.1 to 0.11.2 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- sc_toolbox/__init__.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index 73533af..405745f 100644 --- a/.cookietemple.yml +++ b/.cookietemple.yml @@ -16,5 +16,5 @@ email: lukas.heumos@posteo.net project_name: sc-toolbox project_short_description: A collection of project templates and useful code snippets for single-cell data analysis with Scanpy. -version: 0.11.1 +version: 0.11.2 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d1ceef3..175bc0b 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.11.1 🌈" # <> -tag-template: 0.11.1 # <> +name-template: "0.11.2 🌈" # <> +tag-template: 0.11.2 # <> categories: - title: "🚀 Features" labels: diff --git a/cookietemple.cfg b/cookietemple.cfg index 26ecfb9..feb0544 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.1 +current_version = 0.11.2 [bumpversion_files_whitelisted] init_file = sc_toolbox/__init__.py diff --git a/docs/conf.py b/docs/conf.py index d0bba0c..7af9853 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.11.1" +version = "0.11.2" # The full version, including alpha/beta/rc tags. -release = "0.11.1" +release = "0.11.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 10d3772..e315a4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sc-toolbox" -version = "0.11.1" # <> +version = "0.11.2" # <> description = "A collection of project templates and useful code snippets for single-cell data analysis with Scanpy." authors = ["Lukas Heumos "] license = "MIT" diff --git a/sc_toolbox/__init__.py b/sc_toolbox/__init__.py index 4a61dbb..aab0233 100644 --- a/sc_toolbox/__init__.py +++ b/sc_toolbox/__init__.py @@ -2,6 +2,6 @@ __author__ = "Lukas Heumos" __email__ = "lukas.heumos@posteo.net" -__version__ = "0.11.1" +__version__ = "0.11.2" from sc_toolbox.api import calc, plot, util