From 9143f02d3d997ddceacb26e0ad84156194860b16 Mon Sep 17 00:00:00 2001 From: ABignaud Date: Wed, 5 Apr 2023 19:36:56 +0200 Subject: [PATCH] Bump to version 1.2.6 --- CHANGELOG.md | 3 +++ Dockerfile | 2 +- metator/version.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8fd21e..50ed2db 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.5] - 2023-04-05 +- Correct bug of contigs data final bin value from multiple recursive steps. + ## [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. diff --git a/Dockerfile b/Dockerfile index 2ced36f..b892ab8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk12 -LABEL Name=metator Version=1.2.5 +LABEL Name=metator Version=1.2.6 WORKDIR /app COPY ./ /app diff --git a/metator/version.py b/metator/version.py index b7e1990..64c7d51 100644 --- a/metator/version.py +++ b/metator/version.py @@ -1 +1 @@ -__version__ = "1.2.5" +__version__ = "1.2.6" diff --git a/setup.py b/setup.py index 2073557..533deac 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ MAJOR = 1 MINOR = 2 -MAINTENANCE = 5 +MAINTENANCE = 6 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "GPLv3"