Skip to content

Commit

Permalink
Merge pull request #32 from FAIRDataTeam/release/1.11.0
Browse files Browse the repository at this point in the history
Release 1.11.0 (develop)
  • Loading branch information
MarekSuchanek authored Jun 29, 2021
2 parents 9160ee6 + 1aefb6a commit fff95f9
Show file tree
Hide file tree
Showing 5 changed files with 23 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.10.0'
release = '1.11.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.10.0
image: fairdata/fairdatapoint-index-client:1.11.0
restart: always
# ...
Expand Down Expand Up @@ -308,13 +308,13 @@ have to set ``PUBLIC\_PATH`` ENV variable, in this example to
version: '3'
services:
fdp:
image: fairdata/fairdatapoint:1.10.0
image: fairdata/fairdatapoint:1.11.0
volumes:
- ./application.yml:/fdp/application.yml:ro
# ... other volumes
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.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.10.0
image: fairdata/fairdatapoint:1.11.0
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.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.10.0
image: fairdata/fairdatapoint:1.11.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.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.10.0
image: fairdata/fairdatapoint:1.11.0
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.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.10.0
image: fairdata/fairdatapoint:1.11.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.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.10.0
image: fairdata/fairdatapoint:1.11.0
volumes:
- ./application.yml:/fdp/application.yml:ro
fdp-client:
image: fairdata/fairdatapoint-client:1.10.0
image: fairdata/fairdatapoint-client:1.11.0
environment:
- FDP_HOST=fdp
Expand Down
9 changes: 9 additions & 0 deletions docs/development/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ 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.11.0
-----

- All metadata have dct:conformsTo with profile based on resource definition
- Resolving labels for RDF resources
- Registration of standard namespaces in RDF output
- Resource definitions are now related directly to shapes
- Fixed metadata with empty keywords and pagination

1.10.0
-----

Expand Down

0 comments on commit fff95f9

Please sign in to comment.