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

v 1.0.9

parent 251bc767
No related branches found
No related tags found
No related merge requests found
Pipeline #10894 passed
========= =========
CHANGELOG CHANGELOG
========= =========
- 1.0.9
Correct a bug of random dict in the creation of new enzyme
Modifying auto repr of a rule and argument name
Fixing typo
- 1.0.8 - 1.0.8
Adding doc for -p option Adding doc for -p option
......
...@@ -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 = '1.0.8' release = '1.0.9'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
necessary functions necessary functions
""" """
__version_info__ = ('1', '0', '8') __version_info__ = ('1', '0', '9')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
__revision_date__ = "2019-01-21" __revision_date__ = "2019-03-07"
__author__ = "Nicolas Maillet" __author__ = "Nicolas Maillet"
import argparse import argparse
......
...@@ -4,7 +4,7 @@ from setuptools import setup, find_packages ...@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
_MAJOR = 1 _MAJOR = 1
_MINOR = 0 _MINOR = 0
_MICRO = 8 _MICRO = 9
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
release = '%d.%d' % (_MAJOR, _MINOR) release = '%d.%d' % (_MAJOR, _MINOR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment