diff --git a/Dockerfile b/Dockerfile index 4c59a62..3aeb1f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM continuumio/miniconda3:4.9.2 -LABEL Name=hicstuff Version=3.1.3 +LABEL Name=hicstuff Version=3.1.4 COPY * ./ /app/ WORKDIR /app diff --git a/doc/conf.py b/doc/conf.py index 2c3fa09..806bd35 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.3" +release = "3.1.4" # -- General configuration --------------------------------------------------- diff --git a/hicstuff/version.py b/hicstuff/version.py index dc0a25b..a7f6b6d 100644 --- a/hicstuff/version.py +++ b/hicstuff/version.py @@ -1 +1 @@ -__version__ = '3.1.3' +__version__ = '3.1.4' diff --git a/setup.py b/setup.py index dec35c8..8cb4f02 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ MAJOR = 3 MINOR = 1 -MAINTENANCE = 3 +MAINTENANCE = 4 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "GPLv3"