From 50d20532d83d1cafd3da8c508dfe28444f4bc973 Mon Sep 17 00:00:00 2001 From: Nicolas MAILLET <nicolas.maillet@pasteur.fr> Date: Mon, 7 May 2018 18:03:50 +0200 Subject: [PATCH] V7.0.0 --- CHANGELOG.rst | 5 +++++ docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 4 ++-- setup.py | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f6ba8e3..02bb3c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ ========= CHANGELOG ========= +- 0.7.0 + Add the last 7 enzymes + + Correct block-code in user-guide + - 0.6.1 Add 7 enzymes diff --git a/docs/conf.py b/docs/conf.py index cf7c0f5..2e42550 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.1' +release = '0.7.0' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 7786cfe..9d288b8 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,9 +29,9 @@ necessary functions """ -__version_info__ = ('0', '6', '1') +__version_info__ = ('0', '7', '0') __version__ = '.'.join(__version_info__) -__revision_date__ = "2018-05-02" +__revision_date__ = "2018-05-07" __author__ = "Nicolas Maillet" import argparse diff --git a/setup.py b/setup.py index d32c121..959f83d 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ import os from setuptools import setup, find_packages _MAJOR = 0 -_MINOR = 6 -_MICRO = 1 +_MINOR = 7 +_MICRO = 0 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) -- GitLab