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 CHANGELOG
========= =========
- 1.0.5
Fix version date inside RPG
- 1.0.4 - 1.0.4
Fix version number inside RPG Fix version number inside RPG
......
...@@ -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.4' release = '1.0.5'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
necessary functions necessary functions
""" """
__version_info__ = ('1', '0', '4') __version_info__ = ('1', '0', '5')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
__revision_date__ = "2018-05-16" __revision_date__ = "2018-07-13"
__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 = 4 _MICRO = 5
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