Skip to content
GitLab
Explore
Sign in
Commits on Source (2)
CHANGELOG adjusted
· 06a239fb
guglielmo
authored
Dec 21, 2017
06a239fb
Bump version: 0.7.1 → 0.7.2
· e0e12058
guglielmo
authored
Dec 21, 2017
e0e12058
Hide whitespace changes
Inline
Side-by-side
.bumpversion.cfg
View file @
e0e12058
[bumpversion]
current_version
= 0.7.
1
current_version
= 0.7.
2
commit
= True
[bumpversion:file:web/opdm_service/__init__.py]
...
...
CHANGELOG.md
View file @
e0e12058
...
...
@@ -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
...
...
docker-compose.yml
View file @
e0e12058
...
...
@@ -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
...
...
web/opdm_service/__init__.py
View file @
e0e12058
"
The Openpolis Data Manager service package (the backend)
"
__version__
=
'
0.7.
1
'
__version__
=
'
0.7.
2
'
web/requirements.txt
View file @
e0e12058
...
...
@@ -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
...
...