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

Version 1.0.5

parent ba52e9a4
No related branches found
No related tags found
No related merge requests found
Pipeline #
=========
CHANGELOG
=========
- 1.0.5
Fix version date inside RPG
- 1.0.4
Fix version number inside RPG
......
......@@ -26,7 +26,7 @@ author = 'Nicolas Maillet'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.0.4'
release = '1.0.5'
# -- General configuration ---------------------------------------------------
......
......@@ -29,9 +29,9 @@
necessary functions
"""
__version_info__ = ('1', '0', '4')
__version_info__ = ('1', '0', '5')
__version__ = '.'.join(__version_info__)
__revision_date__ = "2018-05-16"
__revision_date__ = "2018-07-13"
__author__ = "Nicolas Maillet"
import argparse
......
......@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
_MAJOR = 1
_MINOR = 0
_MICRO = 4
_MICRO = 5
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
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