From ba91d28fbdd29a0b9922befbacc25035e3fe86ce Mon Sep 17 00:00:00 2001 From: Mauricio Baeza Date: Tue, 23 Oct 2018 23:43:23 -0500 Subject: [PATCH 1/2] Error unicode --- source/app/controllers/conf.py.example | 2 +- source/app/controllers/configpac.py | 2 +- source/app/controllers/pac.py | 2 +- source/app/controllers/util.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/app/controllers/conf.py.example b/source/app/controllers/conf.py.example index 5da41e8..2a015b5 100644 --- a/source/app/controllers/conf.py.example +++ b/source/app/controllers/conf.py.example @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 DEBUG = False diff --git a/source/app/controllers/configpac.py b/source/app/controllers/configpac.py index 9e0cae1..814fefa 100644 --- a/source/app/controllers/configpac.py +++ b/source/app/controllers/configpac.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from .conf import DEBUG, ID_INTEGRADOR, FINKOK diff --git a/source/app/controllers/pac.py b/source/app/controllers/pac.py index 248c351..6add3bc 100644 --- a/source/app/controllers/pac.py +++ b/source/app/controllers/pac.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 #~ import re #~ from xml.etree import ElementTree as ET diff --git a/source/app/controllers/util.py b/source/app/controllers/util.py index 271f9ec..146128f 100644 --- a/source/app/controllers/util.py +++ b/source/app/controllers/util.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # ~ Empresa Libre # ~ Copyright (C) 2016-2018 Mauricio Baeza Servin (web@correolibre.net) From c42bc817b70707090a67ea48c4322d189d70c114 Mon Sep 17 00:00:00 2001 From: Mauricio Baeza Date: Tue, 23 Oct 2018 23:57:36 -0500 Subject: [PATCH 2/2] Actualizar version --- CHANGELOG.md | 5 +++++ VERSION | 2 +- docs/empresalibre/docs/notas.md | 4 ++++ source/app/settings.py | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6002044..386832d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +v 1.21.2 [23-oct-2018] +---------------------- + - Error unicode + + v 1.21.1 [14-oct-2018] ---------------------- - Error #307 diff --git a/VERSION b/VERSION index 2844977..0369d0b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.21.1 +1.21.2 diff --git a/docs/empresalibre/docs/notas.md b/docs/empresalibre/docs/notas.md index fada4e9..248a62e 100644 --- a/docs/empresalibre/docs/notas.md +++ b/docs/empresalibre/docs/notas.md @@ -6,6 +6,10 @@ siempre actualizado.** Solo se da soporte sobre la ultima versiĆ³n de **Empresa Libre**. +### 1.21.2 [23-oct-2018] +- Error unicode + + ### 1.21.1 [14-oct-2018] - Error [#307](https://gitlab.com/mauriciobaeza/empresa-libre/issues/307) diff --git a/source/app/settings.py b/source/app/settings.py index ea31e6a..2488489 100644 --- a/source/app/settings.py +++ b/source/app/settings.py @@ -47,7 +47,7 @@ except ImportError: DEBUG = DEBUG -VERSION = '1.21.1' +VERSION = '1.21.2' EMAIL_SUPPORT = ('soporte@empresalibre.net',) TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)