From 38db68d40a4303a0a315689550290e191f520c8a Mon Sep 17 00:00:00 2001
From: Nico Maillet <nicolas.maillet@pasteur.fr>
Date: Tue, 14 Mar 2023 14:11:57 +0100
Subject: [PATCH] v2.0.1

---
 CHANGELOG.rst                 | 5 +++++
 docs/conf.py                  | 2 +-
 rpg/RapidPeptidesGenerator.py | 4 ++--
 setup.py                      | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index c136bf2..555b58c 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
 =========
 CHANGELOG
 =========
+- 2.0.1
+    Fix argparse bug preventing -h option to correctly be displayed
+
+    Correct typo
+
 - 2.0.0
     Tested on Python 3.10 et 3.11
     
diff --git a/docs/conf.py b/docs/conf.py
index 094b487..de31be6 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.0'
+release = '2.0.1'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py
index ed55f34..3c12518 100644
--- a/rpg/RapidPeptidesGenerator.py
+++ b/rpg/RapidPeptidesGenerator.py
@@ -29,9 +29,9 @@
 necessary functions
 """
 
-__version_info__ = ('2', '0', '0')
+__version_info__ = ('2', '0', '1')
 __version__ = '.'.join(__version_info__)
-__revision_date__ = "2023-02-22"
+__revision_date__ = "2023-03-14"
 __author__ = "Nicolas Maillet"
 
 import argparse
diff --git a/setup.py b/setup.py
index 3803924..ab7f08d 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.0',  # Required
+    version='2.0.1',  # Required
 
     # This is a one-line description or tagline of what your project does. This
     # corresponds to the "Summary" metadata field:
-- 
GitLab