Skip to content
Commits on Source (2)
[bumpversion]
current_version = 0.7.1
current_version = 0.7.2
commit = True
[bumpversion:file:web/opdm_service/__init__.py]
......
......@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [0.7.2]
### Fixed
- `mistune` library added to requirements
## [0.7.1]
### Fixed
- popolo.urls neede by tests added to main urls
## [0.7.0]
### Added
......
......@@ -14,6 +14,7 @@ services:
- redis:redis
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@postgres/${POSTGRES_DB}
- DEBUG=off
volumes:
- public:/app/public
command: /usr/local/bin/gunicorn opdm_service.wsgi:application -w 2 -b :8000 --access-logfile /var/log/gunicorn.log
......
"The Openpolis Data Manager service package (the backend)"
__version__ = '0.7.1'
__version__ = '0.7.2'
......@@ -18,7 +18,10 @@ django-model-utils<4.0
psycopg2
django-redis
# useful libraries,
# used internally in the project
munch
mistune
# REST API
djangorestframework==3.7.3
......