From aa66c11527ce27e2b3dc51a901cb049cb72910ce Mon Sep 17 00:00:00 2001 From: Nico Maillet <nicolas.maillet@pasteur.fr> Date: Wed, 12 Jun 2024 11:10:42 +0200 Subject: [PATCH] v2.0.5 --- CHANGELOG.rst | 3 +++ docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 4 ++-- setup.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4101d1a..a7e1319 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,9 @@ ========= CHANGELOG ========= +- `2.0.5 <https://gitlab.pasteur.fr/nmaillet/rpg/-/releases/2.0.5>`_ + Avoir potential biais of roundind using Decimal instead of float + - `2.0.4 <https://gitlab.pasteur.fr/nmaillet/rpg/-/releases/2.0.4>`_ Modify precision of masses: diff --git a/docs/conf.py b/docs/conf.py index 7485b6d..41f2785 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 = '2.0.4' +release = '2.0.5' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 4609153..9a78968 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,9 +29,9 @@ necessary functions """ -__version_info__ = ('2', '0', '4') +__version_info__ = ('2', '0', '5') __version__ = '.'.join(__version_info__) -__revision_date__ = "2024-06-11" +__revision_date__ = "2024-06-12" __author__ = "Nicolas Maillet" import argparse diff --git a/setup.py b/setup.py index 421933a..2e3f047 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( # For a discussion on single-sourcing the version across setup.py and the # project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='2.0.4', # Required + version='2.0.5', # Required # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: -- GitLab