diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f6ba8e3fd076756cd3c973cf2d2bde0b801699ca..02bb3c9865bb16cc2226af8e38234dac63db4220 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 cf7c0f5881827204668129f51199442afb1cf1ac..2e42550b0648d3fff64d0c83bf0509ac116cb910 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 7786cfe2c6283d501c2dca98c00d31cd6e22e0f5..9d288b843d6850ed44ce142d62e9dfd40fe73a3e 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 d32c12137eca037c9746ae6d5effb1361325c6e9..959f83d062175bcec19918a342adfd9262966e55 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)