From bcbcd1d2988cc0cdea901b371c6e92baea213eac Mon Sep 17 00:00:00 2001 From: ABignaud Date: Wed, 5 Apr 2023 17:11:31 +0200 Subject: [PATCH] Bump to version 1.2.5 --- CHANGELOG.md | 6 ++++++ Dockerfile | 2 +- metator/version.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ac22ab..f8fd21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. +## [1.2.5] - 2023-04-05 +- Remove recursive parallel which seems to failed in some case. +- Correct bug of contigs data final bin value from multiple recursive steps. +- Add exception to avoid error while mutliple metator are started from the same +working directory. + ## [1.2.4] - 2023-04-04 - Add a prefix option for fasta files. diff --git a/Dockerfile b/Dockerfile index 905c7d6..2ced36f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk12 -LABEL Name=metator Version=1.2.4 +LABEL Name=metator Version=1.2.5 WORKDIR /app COPY ./ /app diff --git a/metator/version.py b/metator/version.py index b3f9ac7..b7e1990 100644 --- a/metator/version.py +++ b/metator/version.py @@ -1 +1 @@ -__version__ = "1.2.4" +__version__ = "1.2.5" diff --git a/setup.py b/setup.py index 5b90e4b..2073557 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ MAJOR = 1 MINOR = 2 -MAINTENANCE = 4 +MAINTENANCE = 5 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "GPLv3"