From cb8d3bd52cab52364a96e0c85c043144a53c09bd Mon Sep 17 00:00:00 2001 From: js2264 Date: Thu, 24 Aug 2023 19:47:05 +0200 Subject: [PATCH] bump to v3.1.7 --- 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 fdd7afe..91c26c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM continuumio/miniconda3:4.9.2 -LABEL Name=hicstuff Version=3.1.6 +LABEL Name=hicstuff Version=3.1.7 COPY * ./ /app/ WORKDIR /app diff --git a/doc/conf.py b/doc/conf.py index c24f9b0..dad2f71 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "3.1" # The full version, including alpha/beta/rc tags -release = "3.1.6" +release = "3.1.7" # -- General configuration --------------------------------------------------- diff --git a/hicstuff/version.py b/hicstuff/version.py index d4cc3e2..47ed839 100644 --- a/hicstuff/version.py +++ b/hicstuff/version.py @@ -1 +1 @@ -__version__ = '3.1.6' +__version__ = '3.1.7' diff --git a/setup.py b/setup.py index f9694c8..783a5a2 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ MAJOR = 3 MINOR = 1 -MAINTENANCE = 6 +MAINTENANCE = 7 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "BSD-3-Clause"