Skip to content

Commit

Permalink
Merge pull request #29 from FAIRDataTeam/release/1.10.0
Browse files Browse the repository at this point in the history
Release 1.10.0
  • Loading branch information
MarekSuchanek authored May 21, 2021
2 parents bb12b3d + 19ce69d commit 2088b3b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Dutch Techcentre for Life Sciences'

# The full version, including alpha/beta/rc tags
release = '1.9.0'
release = '1.10.0'


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/deployment/advanced-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Then for the FDP client, you need to use ``fairdata/fairdatapoint-index-client``
# ...
index_client:
image: fairdata/fairdatapoint-index-client:1.9.0
image: fairdata/fairdatapoint-index-client:1.10.0
restart: always
# ...
Expand Down Expand Up @@ -292,13 +292,13 @@ have to set ``PUBLIC\_PATH`` ENV variable, in this example to
version: '3'
services:
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
volumes:
- ./application.yml:/fdp/application.yml:ro
# ... other volumes
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
ports:
- 80:80
environment:
Expand Down
16 changes: 8 additions & 8 deletions docs/deployment/local-deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Here is an example of the simplest `Docker Compose <https://docs.docker.com/comp
services:
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
ports:
- 80:80
environment:
Expand Down Expand Up @@ -67,12 +67,12 @@ Then, we need to mount the application config into the FDP container and update
services:
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
ports:
- 8080:80
environment:
Expand Down Expand Up @@ -105,10 +105,10 @@ Here is the updated docker-compose file:
services:
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
ports:
- 80:80
environment:
Expand Down Expand Up @@ -153,12 +153,12 @@ We now need to update our ``docker-compose.yml`` file, we add a new volume for t
services:
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
ports:
- 80:80
environment:
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/production-deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ We have certificates generated and configuration for proxy ready. Now we need to
- /etc/letsencrypt:/etc/letsencrypt:ro
fdp:
image: fairdata/fairdatapoint:1.9.0
image: fairdata/fairdatapoint:1.10.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.9.0
image: fairdata/fairdatapoint-client:1.10.0
environment:
- FDP_HOST=fdp
Expand Down
8 changes: 8 additions & 0 deletions docs/development/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ Overview

Here we summarize the key features and changes for each FAIR Data Point release. For details including bugfixes and minor changes, see :ref:`detailed-changelog`.

1.10.0
-----

- Reset to factory defaults (users, metadata, resource definitions)
- Improved UX for browsing child metadata
- Allow to change internal shapes (and delete dataset and distribution)
- Several dependencies updated (including Java 16)

1.9.0
-----

Expand Down

0 comments on commit 2088b3b

Please sign in to comment.