From b44fbed863141bd55610bb028672d244413375d5 Mon Sep 17 00:00:00 2001 From: js2264 Date: Wed, 6 Sep 2023 19:53:51 +0200 Subject: [PATCH] bump to v3.2.1 --- Dockerfile | 2 +- doc/conf.py | 2 +- hicstuff/version.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3867833..d8882fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM mambaorg/micromamba:latest -LABEL Name=hicstuff Version=3.2.0 +LABEL Name=hicstuff Version=3.2.1 COPY --chown=$MAMBA_USER:$MAMBA_USER . ./ diff --git a/doc/conf.py b/doc/conf.py index 4a7539a..ce44702 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "3.2" # The full version, including alpha/beta/rc tags -release = "3.2.0" +release = "3.2.1" # -- General configuration --------------------------------------------------- diff --git a/hicstuff/version.py b/hicstuff/version.py index 573cf70..b50da94 100644 --- a/hicstuff/version.py +++ b/hicstuff/version.py @@ -1 +1 @@ -__version__ = '3.2.0' +__version__ = '3.2.1' diff --git a/setup.py b/setup.py index 99d7c8b..0f245ea 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ MAJOR = 3 MINOR = 2 -MAINTENANCE = 0 +MAINTENANCE = 1 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "BSD-3-Clause"