diff --git a/README.md b/README.md index bb38066fcec10a4f2859e21f1b27ae6e5b0bf88e..8e2daca7a8056c0e7140604829fdbdc978253574 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,12 @@ your browser. ## Change log Omitted versions are plain bugfix releases with only minor changes and fixes. +### v0.6.0 +- GUI URL, and API endpoint that resolves NOMAD CoE legary PIDs +- Support for datasets in the GUI +- more flexible search python module and repo API +- minor bugfixes + ### v0.5.2 - allows to download large files over longer time period - streamlined deployment without API+GUI proxy diff --git a/nomad/config.py b/nomad/config.py index e86c7ebb6f792c233803b50406c137316ad7fb13..004a8f1fc44504418bd6b18a2a76155da3ce96d3 100644 --- a/nomad/config.py +++ b/nomad/config.py @@ -193,7 +193,7 @@ client = NomadConfig( url='http://localhost:8000/fairdi/nomad/latest/api' ) -version = '0.5.4' +version = '0.6.0' commit = gitinfo.commit release = 'devel' domain = 'DFT' diff --git a/ops/helm/nomad/Chart.yaml b/ops/helm/nomad/Chart.yaml index 0e9a63e1de4094727533d937f5a8b1e32077cf1f..787b7894f5acc792e2a839d0b16d7688dba45eac 100644 --- a/ops/helm/nomad/Chart.yaml +++ b/ops/helm/nomad/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: "0.5.4" +appVersion: "0.6.0" description: A Helm chart for Kubernetes that only runs nomad services and uses externally hosted databases. name: nomad -version: 0.5.4 +version: 0.6.0 diff --git a/setup.py b/setup.py index 9f8e7cd5f17ad26cad7bb0abecb475df636d4235..3b733e4bd72422fe3a735548bf7c7e921e04e2cf 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ reqs = [str(ir.req) for ir in install_reqs if 'sphinxcontrib.httpdomain' not in setup( name='nomad', - version='0.5.4', + version='0.6.0', description='The nomad@FAIRDI infrastructure python package', py_modules=['nomad'], install_requires=reqs,