Prepare release 3.1.1.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-09-18 22:10:17 -04:00
parent 041f4e7331
commit ce7ae7a606
4 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ from __future__ import unicode_literals
__title__ = 'Mayan EDMS'
__version__ = '{{ version }}'
__build__ = 0x030100
__build__ = 0x030101
__build_string__ = '{{ build_string }}'
__author__ = 'Roberto Rosario'
__author_email__ = 'roberto.rosario@mayan-edms.com'

View File

@@ -1 +1 @@
3.1
3.1.1

View File

@@ -31,7 +31,7 @@ MAYAN_TEMPLATE = '__init__.py.tmpl'
def generate_build_number():
if BUILD and DATE:
try:
result = '{} {}'.format(BUILD(), DATE()).replace('\n', '')
result = '{}_{}'.format(BUILD(), DATE()).replace('\n', '')
except sh.ErrorReturnCode_128:
result = ''
else:

View File

@@ -1,9 +1,9 @@
from __future__ import unicode_literals
__title__ = 'Mayan EDMS'
__version__ = '3.1'
__build__ = 0x030100
__build_string__ = 'v3.1 Mon Sep 17 18:52:26 2018 -0400'
__version__ = '3.1.1'
__build__ = 0x030101
__build_string__ = 'v3.1-11-g041f4e733_Tue Sep 18 22:03:25 2018 -0400'
__author__ = 'Roberto Rosario'
__author_email__ = 'roberto.rosario@mayan-edms.com'
__description__ = 'Free Open Source Electronic Document Management System'