Update changelog and version

This commit is contained in:
El Mau 2023-10-30 00:12:40 -06:00
parent bd1699d082
commit edd8d560bd
3 changed files with 22 additions and 6 deletions

View File

@ -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.

View File

@ -1 +1 @@
2.0.7
2.0.8

View File

@ -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)