Skip to content
Snippets Groups Projects
Commit fbc59244 authored by Nicolas  MAILLET's avatar Nicolas MAILLET
Browse files

Beta to stable

parent f2bbdcc8
Branches
Tags
No related merge requests found
Pipeline #
========= =========
CHANGELOG 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 - 0.7.0
Add the last 7 enzymes Add the last 7 enzymes
......
...@@ -26,7 +26,7 @@ author = 'Nicolas Maillet' ...@@ -26,7 +26,7 @@ author = 'Nicolas Maillet'
# The short X.Y version # The short X.Y version
version = '' version = ''
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.7.0' release = '1.0.0'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
necessary functions necessary functions
""" """
__version_info__ = ('0', '7', '0') __version_info__ = ('1', '0', '0')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
__revision_date__ = "2018-05-07" __revision_date__ = "2018-05-16"
__author__ = "Nicolas Maillet" __author__ = "Nicolas Maillet"
import argparse import argparse
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
_MAJOR = 0 _MAJOR = 1
_MINOR = 7 _MINOR = 0
_MICRO = 0 _MICRO = 0
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
release = '%d.%d' % (_MAJOR, _MINOR) release = '%d.%d' % (_MAJOR, _MINOR)
...@@ -18,7 +18,7 @@ metainfo = { ...@@ -18,7 +18,7 @@ metainfo = {
'platforms': ['Linux', 'Unix', 'MacOsX', 'Windows'], 'platforms': ['Linux', 'Unix', 'MacOsX', 'Windows'],
"keywords": ["protein", "peptide", "enzyme", "protease", "digestion"], "keywords": ["protein", "peptide", "enzyme", "protease", "digestion"],
'classifiers': [ 'classifiers': [
'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment