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

Version 1.0.4

parent 09773b8e
No related branches found
No related tags found
No related merge requests found
Pipeline #
========= =========
CHANGELOG CHANGELOG
========= =========
- 1.0.4
Fix version number inside RPG
- 1.0.3 - 1.0.3
Support of Python 3.7 Support of Python 3.7
......
...@@ -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.3' release = '1.0.4'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
necessary functions necessary functions
""" """
__version_info__ = ('1', '0', '1') __version_info__ = ('1', '0', '4')
__version__ = '.'.join(__version_info__) __version__ = '.'.join(__version_info__)
__revision_date__ = "2018-05-16" __revision_date__ = "2018-05-16"
__author__ = "Nicolas Maillet" __author__ = "Nicolas Maillet"
......
...@@ -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 = 3 _MICRO = 4
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