diff --git a/CHANGELOG.md b/CHANGELOG.md index 127b724..f81eb6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. +## [1.2.8] - 2023-04-12 +- Correct issue with anvio binning file. + ## [1.2.7] - 2023-04-07 - Correct bug during final plot generation. diff --git a/Dockerfile b/Dockerfile index 9081b5b..99b1232 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk12 -LABEL Name=metator Version=1.2.7 +LABEL Name=metator Version=1.2.8 WORKDIR /app COPY ./ /app diff --git a/metator/version.py b/metator/version.py index 7f647d0..5cc179e 100644 --- a/metator/version.py +++ b/metator/version.py @@ -1 +1 @@ -__version__ = "1.2.7" +__version__ = "1.2.8" diff --git a/setup.py b/setup.py index eda3c6d..d35a665 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ MAJOR = 1 MINOR = 2 -MAINTENANCE = 7 +MAINTENANCE = 8 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "GPLv3"