diff --git a/CHANGELOG.md b/CHANGELOG.md index e30848a..96a99f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +v 2.0.8 [30-Oct-2023] +--------------------- + - Fix: Permitir generar CFDI de egreso para facturas globales sin datos globales. + - Fix: Permitir cambiar la zona horaria para cuando se usa en servidor. + +Es necesario hacer una migraciĆ³n: +``` +cd /opt/empresa-libre + +git pull origin master + +cd source/app/models + +python main.py -bk + +python main.py -m -r RFC +``` + + v 2.0.7 [06-Ju1-2023] --------------------- - Fix: En tasa de retenciĆ³n de un Resico a una Persona Moral. diff --git a/VERSION b/VERSION index f1547e6..815e68d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.7 +2.0.8 diff --git a/source/app/settings.py b/source/app/settings.py index ca14884..77132d6 100644 --- a/source/app/settings.py +++ b/source/app/settings.py @@ -30,10 +30,7 @@ try: except ImportError: DEFAULT_PASSWORD = 'salgueiro4.0' -try: - from conf import TITLE_APP -except ImportError: - TITLE_APP = 'Empresa Libre' +TITLE_APP = 'Empresa Libre' try: from conf import NO_HTTPS @@ -42,7 +39,7 @@ except ImportError: DEBUG = DEBUG -VERSION = '2.0.7' +VERSION = '2.0.8' EMAIL_SUPPORT = ('soporte@empresalibre.mx',) TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)