diff --git a/.cookietemple.yml b/.cookietemple.yml index 4fc5a8f..8c1040a 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.9.0 +version: 0.10.0 license: MIT diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index c79d726..d11dad9 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.9.0 🌈" # <> -tag-template: 0.9.0 # <> +name-template: "0.10.0 🌈" # <> +tag-template: 0.10.0 # <> categories: - title: "🚀 Features" labels: diff --git a/cookietemple.cfg b/cookietemple.cfg index 485f1ac..13a42e9 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.10.0 [bumpversion_files_whitelisted] init_file = sc_toolbox/__init__.py diff --git a/docs/conf.py b/docs/conf.py index d0b8be9..ca90f35 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.9.0" +version = "0.10.0" # The full version, including alpha/beta/rc tags. -release = "0.9.0" +release = "0.10.0" # 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 3b699aa..47cfae3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sc-toolbox" -version = "0.9.0" # <> +version = "0.10.0" # <> 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 e15975b..cece8de 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.9.0" +__version__ = "0.10.0" from sc_toolbox.api import calc, plot, util