From 6705ad5e8b7128cd21075fb8ae2901b222b9d31b Mon Sep 17 00:00:00 2001 From: ABignaud Date: Wed, 29 Mar 2023 11:35:18 +0200 Subject: [PATCH] Bump to version 1.2.1 --- CHANGELOG.md | 10 ++++++++++ Dockerfile | 2 +- metator/version.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc9da9c..7e25b64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. +## [1.2.1] - 2023-03-29 +- Make scaffolding optional in pipeline. +- Remove the option to start with network file. +- Allow parallel scaffolding at the end of the pipeline. +- Force pairix index used in the contact map module. +- Change pairs from option to arguments to handle easier multiple files as +arguments. +- Debug scaffold module default parameters. +- Update docs. + ## [1.2.0] - 2023-03-17 - Remove the skip validation option. - Use miComplete instead of checkM for the recursive step. diff --git a/Dockerfile b/Dockerfile index aaf4083..a96b251 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk12 -LABEL Name=metator Version=1.2.0 +LABEL Name=metator Version=1.2.1 WORKDIR /app COPY ./ /app diff --git a/metator/version.py b/metator/version.py index 58d478a..a955fda 100644 --- a/metator/version.py +++ b/metator/version.py @@ -1 +1 @@ -__version__ = '1.2.0' +__version__ = "1.2.1" diff --git a/setup.py b/setup.py index fdc2148..616188a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ MAJOR = 1 MINOR = 2 -MAINTENANCE = 0 +MAINTENANCE = 1 VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE) LICENSE = "GPLv3"