Browse Source

Release: 3.1.163-RC23

pull/3721/merge 3.1.163-RC23
Edward Ribeiro 5 months ago
parent
commit
1c1f6818f3
  1. 6
      CHANGES.md
  2. 2
      docker/docker-compose.yaml
  3. 2
      sapl/settings.py
  4. 2
      sapl/templates/base.html
  5. 2
      setup.py

6
CHANGES.md

@ -1,4 +1,10 @@
3.1.163-RC23 / 2024-07-31
=========================
* Otimiza recuperação de normas relacionadas (#3734)
* hot-fix: resolve imcompatibilidade de regex com versão de produção do postgresql 9.6
3.1.163-RC21 / 2024-06-25
=========================

2
docker/docker-compose.yaml

@ -32,7 +32,7 @@ services:
networks:
- sapl-net
sapl:
image: interlegis/sapl:3.1.163-RC22
image: interlegis/sapl:3.1.163-RC23
# build:
# context: ../
# dockerfile: ./docker/Dockerfile

2
sapl/settings.py

@ -41,7 +41,7 @@ ALLOWED_HOSTS = ['*']
LOGIN_REDIRECT_URL = '/'
LOGIN_URL = '/login/?next='
SAPL_VERSION = '3.1.163-RC22'
SAPL_VERSION = '3.1.163-RC23'
if DEBUG:
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

2
sapl/templates/base.html

@ -192,7 +192,7 @@
<small>
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto.
</small>
<span>Release: 3.1.163-RC22</span>
<span>Release: 3.1.163-RC23</span>
</p>
</div>

2
setup.py

@ -38,7 +38,7 @@ install_requires = [
]
setup(
name='interlegis-sapl',
version='3.1.163-RC22',
version='3.1.163-RC23',
packages=find_packages(),
include_package_data=True,
license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007',

Loading…
Cancel
Save