diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cf648ceb2f9175195a9e4f96dae20acadf06fc1c..583932fc933fead43ef49d65b2543bd345cbb62a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,9 @@ ========= CHANGELOG ========= +- 1.0.5 + Fix version date inside RPG + - 1.0.4 Fix version number inside RPG diff --git a/docs/conf.py b/docs/conf.py index bf2d1d88f2bf70b025a0a7585e59b603457719e7..11881614d72c1a9f259f4764a2301684e32bbb49 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.4' +release = '1.0.5' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index df01f04554ea981d64ca2dc7bba06ec700fb1416..e69efaf9e8ade8854f59310fc19640df03528e6c 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,9 +29,9 @@ necessary functions """ -__version_info__ = ('1', '0', '4') +__version_info__ = ('1', '0', '5') __version__ = '.'.join(__version_info__) -__revision_date__ = "2018-05-16" +__revision_date__ = "2018-07-13" __author__ = "Nicolas Maillet" import argparse diff --git a/setup.py b/setup.py index e4b1d0f55c5a94c7cdaf0f053e35e73ac1b36518..9e5dc87894a22c32a9b4fe689d6aef5a89b94415 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 1 _MINOR = 0 -_MICRO = 4 +_MICRO = 5 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR)