diff --git a/docker-compose.yml b/docker-compose.yml index 45f8fe9ba..a29cd1501 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,9 +9,10 @@ sapldb: volumes: - sapldb_data:/var/lib/postgresql/data/ ports: - - "5432:5432" + - "5433:5432" sapl: - image: interlegis/sapl:3.1.160-RC7 + #image: interlegis/sapl:3.1.160-RC8 + build: . restart: always environment: ADMIN_PASSWORD: interlegis @@ -30,4 +31,4 @@ sapl: links: - sapldb ports: - - "80:80" \ No newline at end of file + - "80:80" diff --git a/sapl/settings.py b/sapl/settings.py index 7be54e0dc..da0b63e5b 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -41,7 +41,7 @@ ALLOWED_HOSTS = ['*'] LOGIN_REDIRECT_URL = '/' LOGIN_URL = '/login/?next=' -SAPL_VERSION = '3.1.160-RC7' +SAPL_VERSION = '3.1.160-RC8' if DEBUG: EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' diff --git a/sapl/templates/base.html b/sapl/templates/base.html index d2d4bc7d5..70ed213ca 100644 --- a/sapl/templates/base.html +++ b/sapl/templates/base.html @@ -179,7 +179,7 @@ Desenvolvido pelo Interlegis em software livre e aberto. - Release: 3.1.160-RC7 + Release: 3.1.160-RC8

diff --git a/setup.py b/setup.py index 22a45bee5..0980d4a2a 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ install_requires = [ ] setup( name='interlegis-sapl', - version='3.1.160-RC7', + version='3.1.160-RC8', packages=find_packages(), include_package_data=True, license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007',