From e2f1b1a673d0dc9214a395c7512efa5488764ee2 Mon Sep 17 00:00:00 2001 From: js2264 Date: Thu, 30 May 2024 15:38:18 +0200 Subject: [PATCH] bump to v3.2.4 --- 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 9ff9aef..2db9802 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM mambaorg/micromamba:latest -LABEL Name=hicstuff Version=3.2.3 +LABEL Name=hicstuff Version=3.2.4 COPY --chown=$MAMBA_USER:$MAMBA_USER . ./ diff --git a/doc/conf.py b/doc/conf.py index bd4fc1e..0fae9a4 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.3" +release = "3.2.4" # -- General configuration --------------------------------------------------- diff --git a/hicstuff/version.py b/hicstuff/version.py index 3220610..cca48bd 100644 --- a/hicstuff/version.py +++ b/hicstuff/version.py @@ -1 +1 @@ -__version__ = '3.2.3' +__version__ = '3.2.4' diff --git a/setup.py b/setup.py index 7cae6a4..e37a1f0 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ MAJOR = 3 MINOR = 2 -MAINTENANCE = 3 +MAINTENANCE = 4 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "BSD-3-Clause"