From 54c61dd0c2d33829fe66547b0ea532d653606562 Mon Sep 17 00:00:00 2001 From: Nicolas MAILLET <nicolas.maillet@pasteur.fr> Date: Thu, 7 Mar 2019 15:12:55 +0100 Subject: [PATCH] v 1.0.9 --- CHANGELOG.rst | 7 +++++++ docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 4 ++-- setup.py | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eddbfc0..63983c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ ========= CHANGELOG ========= +- 1.0.9 + Correct a bug of random dict in the creation of new enzyme + + Modifying auto repr of a rule and argument name + + Fixing typo + - 1.0.8 Adding doc for -p option diff --git a/docs/conf.py b/docs/conf.py index 9e937a1..aff06f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = 'Nicolas Maillet' # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.0.8' +release = '1.0.9' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 2c7735f..f721d9a 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,9 +29,9 @@ necessary functions """ -__version_info__ = ('1', '0', '8') +__version_info__ = ('1', '0', '9') __version__ = '.'.join(__version_info__) -__revision_date__ = "2019-01-21" +__revision_date__ = "2019-03-07" __author__ = "Nicolas Maillet" import argparse diff --git a/setup.py b/setup.py index d883e48..2a3b26f 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 1 _MINOR = 0 -_MICRO = 8 +_MICRO = 9 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) -- GitLab