diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a2a4a48dbd1849796c4f7fe0dda7182dce0018a8..eddbfc06a9eec482f6f1ef0800e428c3782cd273 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ ========= CHANGELOG ========= +- 1.0.8 + Adding doc for -p option + + Fixing typo + - 1.0.7 Adding choice for pKa values (option -p) diff --git a/docs/conf.py b/docs/conf.py index 7f9bc8e5f576e329e44771e3eb595fcbf9df2887..9e937a18770a88f936c7a711ba1bb65949ec2cdf 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.7' +release = '1.0.8' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 7eb612bcdc21e4427980d074102c2fe214201a42..2c7735fa58c40c4f55f15c469ec8eea74c5cb443 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,7 +29,7 @@ necessary functions """ -__version_info__ = ('1', '0', '7') +__version_info__ = ('1', '0', '8') __version__ = '.'.join(__version_info__) __revision_date__ = "2019-01-21" __author__ = "Nicolas Maillet" diff --git a/setup.py b/setup.py index b5f3e20da0405dd3619abb7aedbf238f2f9b8c16..d883e48a5884d994444b043b41d1d0f42e49e363 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 1 _MINOR = 0 -_MICRO = 7 +_MICRO = 8 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR)