From 8e0b76cefd1d1927a580b276aa6ee16198c3447f Mon Sep 17 00:00:00 2001 From: Nicolas MAILLET <nicolas.maillet@pasteur.fr> Date: Fri, 4 May 2018 18:07:41 +0200 Subject: [PATCH] V0.6.1 --- docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b5d1c83..cf7c0f5 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 = '0.6.0' +release = '0.6.1' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 3ab2132..7786cfe 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,7 +29,7 @@ necessary functions """ -__version_info__ = ('0', '6', '0') +__version_info__ = ('0', '6', '1') __version__ = '.'.join(__version_info__) __revision_date__ = "2018-05-02" __author__ = "Nicolas Maillet" diff --git a/setup.py b/setup.py index 1c38b65..d32c121 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 0 _MINOR = 6 -_MICRO = 0 +_MICRO = 1 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) -- GitLab