From ab4d0c14e0a8f94052a08bc66c06878af9c76726 Mon Sep 17 00:00:00 2001 From: ljyanesm Date: Tue, 25 May 2021 11:11:04 +0100 Subject: [PATCH] Bump version and update CHANGELOG.md - 2.2.5 -> 2.3.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 8 ++++++++ Mikado/version.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5c5b14ba..27c9ee5d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.5 +current_version = 2.3.0 commit = False tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 05394eca..a1f860f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.3.0 + +Fix [#404](https://github.com/EI-CoreBioinformatics/mikado/issues/404): Error in extract_promoter_regions.py helper script + +Fix [#405](https://github.com/EI-CoreBioinformatics/mikado/issues/405): Error in remove_utrs.py helper script + +Also fixes a name clashing issue in daijin's configuration object and other small bugs + # Version 2.2.5 Fixes class2 for the Daijin pipeline and removes a noisy print in BED12 parsing diff --git a/Mikado/version.py b/Mikado/version.py index f1e49f68..55e47090 100644 --- a/Mikado/version.py +++ b/Mikado/version.py @@ -1 +1 @@ -__version__ = "2.2.5" +__version__ = "2.3.0" diff --git a/setup.py b/setup.py index 81fdb238..c5926cee 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ setup( name="Mikado", python_requires=">3.6", - version="2.2.5", + version="2.3.0", description="A Python3 annotation program to select the best gene model in each locus", long_description=long_description, url="https://github.com/EI-CoreBioinformatics/mikado",