From 021d8e92d661fd06861481548ffed39881a1fea8 Mon Sep 17 00:00:00 2001 From: Nicolas MAILLET <nicolas.maillet@pasteur.fr> Date: Mon, 30 Apr 2018 20:18:39 +0200 Subject: [PATCH] new version 0.5.3 --- docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b149d56..9924128 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.5.2' +release = '0.5.3' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 4542576..5b7d927 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -38,10 +38,10 @@ necessary functions #Input format : a fasta/fastq file or a sequence #Output format : a fasta/csv/tsv file containing the digested sequences #@author: Nicolas Maillet -#@version: 0.5.2α +#@version: 0.5.3α #@note: Pwet -__version_info__ = ('0', '5', '2') +__version_info__ = ('0', '5', '3') __version__ = '.'.join(__version_info__) __revision_date__ = "2018-04-27" __author__ = "Nicolas Maillet" diff --git a/setup.py b/setup.py index a5e1184..5ce7faa 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 0 _MINOR = 5 -_MICRO = 2 +_MICRO = 3 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) -- GitLab