From 50544c3792b4b30488ca552725aab4a80f663403 Mon Sep 17 00:00:00 2001 From: Laurent Jourdren Date: Wed, 14 Apr 2021 20:11:45 +0200 Subject: [PATCH] ToulligQC is now 2.0.1. --- CHANGES.md | 5 +++++ Dockerfile | 2 +- toulligqc/version.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0bffb03..c9702bb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog +## 2.0.1 (2021-04-14) +* In setup.py, set the developement status for ToulligQC as Production/Stable instead of Beta +* Add MANIFEST.in file to add resources files in PyPi package +* Fix error with latest versions of NumPy by add a missing int casting + ## 2.0 (2021-04-09) * Fix duration computation * For PHRED score distribution boxplots, remove unnecessary interpolation before creating boxplot diff --git a/Dockerfile b/Dockerfile index 985f8f6..a237057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 MAINTAINER Laurent Jourdren -ARG VERSION=2.0 +ARG VERSION=2.0.1 RUN apt update && \ DEBIAN_FRONTEND=noninteractive apt install --yes \ python3 \ diff --git a/toulligqc/version.py b/toulligqc/version.py index 3b3dacb..3f39079 100644 --- a/toulligqc/version.py +++ b/toulligqc/version.py @@ -1 +1 @@ -__version__ = '2.0' +__version__ = '2.0.1'