From 1433b5b45f6b19d2369abe3f5ac7ddf368badaeb Mon Sep 17 00:00:00 2001
From: Nico Maillet <nicolas.maillet@pasteur.fr>
Date: Wed, 3 Feb 2021 16:20:20 +0100
Subject: [PATCH] Update to v1.2.0

---
 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 41118fd..a0d4dde 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
 =========
 CHANGELOG
 =========
+- 1.2.0
+    Input files can be gzipped
+
+    Input file can be processed in parallel (-c options for the number of processes to use)
+
 - 1.1.0
     Modify input. Now, option -i only takes files. Use option -s to input sequence
 
diff --git a/docs/conf.py b/docs/conf.py
index 64f0732..76659d0 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.1.0'
+release = '1.2.0'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py
index 7691c6c..bc6fc78 100644
--- a/rpg/RapidPeptidesGenerator.py
+++ b/rpg/RapidPeptidesGenerator.py
@@ -29,9 +29,9 @@
 necessary functions
 """
 
-__version_info__ = ('1', '1', '0')
+__version_info__ = ('1', '2', '0')
 __version__ = '.'.join(__version_info__)
-__revision_date__ = "2019-04-03"
+__revision_date__ = "2021-02-03"
 __author__ = "Nicolas Maillet"
 
 import argparse
diff --git a/setup.py b/setup.py
index 71ed37f..9223168 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='1.1.0',  # Required
+    version='1.2.0',  # Required
 
     # This is a one-line description or tagline of what your project does. This
     # corresponds to the "Summary" metadata field:
-- 
GitLab