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'