From fbc59244fe247a7596e639a40717a38350667680 Mon Sep 17 00:00:00 2001
From: Nicolas MAILLET <nicolas.maillet@pasteur.fr>
Date: Wed, 16 May 2018 17:06:49 +0200
Subject: [PATCH] Beta to stable

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

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 02bb3c9..109ec37 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,13 @@
 =========
 CHANGELOG
 =========
+- 1.0.0
+    Correct a bug when to rules were applying at the same time
+
+    Update user-guide
+
+    Beta to stable
+
 - 0.7.0
     Add the last 7 enzymes
 
diff --git a/docs/conf.py b/docs/conf.py
index 7827896..19f8359 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 = '0.7.0'
+release = '1.0.0'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py
index 9d288b8..e77dbf3 100644
--- a/rpg/RapidPeptidesGenerator.py
+++ b/rpg/RapidPeptidesGenerator.py
@@ -29,9 +29,9 @@
 necessary functions
 """
 
-__version_info__ = ('0', '7', '0')
+__version_info__ = ('1', '0', '0')
 __version__ = '.'.join(__version_info__)
-__revision_date__ = "2018-05-07"
+__revision_date__ = "2018-05-16"
 __author__ = "Nicolas Maillet"
 
 import argparse
diff --git a/setup.py b/setup.py
index 959f83d..1620790 100644
--- a/setup.py
+++ b/setup.py
@@ -2,8 +2,8 @@
 import os
 from setuptools import setup, find_packages
 
-_MAJOR = 0
-_MINOR = 7
+_MAJOR = 1
+_MINOR = 0
 _MICRO = 0
 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
 release = '%d.%d' % (_MAJOR, _MINOR)
@@ -18,7 +18,7 @@ metainfo = {
     'platforms': ['Linux', 'Unix', 'MacOsX', 'Windows'],
     "keywords": ["protein", "peptide", "enzyme", "protease", "digestion"],
     'classifiers': [
-        'Development Status :: 4 - Beta',
+        'Development Status :: 5 - Production/Stable',
         'Intended Audience :: Science/Research',
         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
         'Operating System :: OS Independent',
-- 
GitLab