diff --git a/Dockerfile b/Dockerfile index 73673e0..9ff9aef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM mambaorg/micromamba:latest -LABEL Name=hicstuff Version=3.2.2 +LABEL Name=hicstuff Version=3.2.3 COPY --chown=$MAMBA_USER:$MAMBA_USER . ./ diff --git a/doc/conf.py b/doc/conf.py index 82ba5aa..bd4fc1e 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.2" +release = "3.2.3" # -- General configuration --------------------------------------------------- diff --git a/hicstuff/version.py b/hicstuff/version.py index 29e4a94..3220610 100644 --- a/hicstuff/version.py +++ b/hicstuff/version.py @@ -1 +1 @@ -__version__ = '3.2.2' +__version__ = '3.2.3' diff --git a/setup.py b/setup.py index 4ec3651..7cae6a4 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ MAJOR = 3 MINOR = 2 -MAINTENANCE = 2 +MAINTENANCE = 3 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "BSD-3-Clause"