From ff67c0042bd5dd3a29f268b73f04b7bbe7d61f68 Mon Sep 17 00:00:00 2001
From: Markus Scheidgen <markus.scheidgen@gmail.com>
Date: Fri, 27 Mar 2020 09:54:36 +0100
Subject: [PATCH] Updated version numbers and readme.

---
 README.md                 | 9 +++++++++
 gui/package.json          | 2 +-
 nomad/config.py           | 2 +-
 ops/helm/nomad/Chart.yaml | 4 ++--
 setup.py                  | 2 +-
 5 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 43103fa086..4c7c1e7379 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,15 @@ contributing, and API reference.
 
 Omitted versions are plain bugfix releases with only minor changes and fixes.
 
+### v0.8.0
+- new underlying datamodel that allows to maintain multiple domains
+- mulitple domains supported the GUI
+- new metainfo implementation
+- new archive based on new metainfo
+- client library that serves archive data as objects (with tab completion) not dictionaries
+- properties and user tab in the search GUI
+- improved performance on most parsers
+
 ### v0.7.9
 - Everything to run a simple NOMAD OASIS based on the central user-management
 - minor bugfixes
diff --git a/gui/package.json b/gui/package.json
index 35147d696c..00d357e37a 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,6 +1,6 @@
 {
   "name": "nomad-fair-gui",
-  "version": "0.7.10",
+  "version": "0.8.0",
   "commit": "nomad-gui-commit-placeholder",
   "private": true,
   "dependencies": {
diff --git a/nomad/config.py b/nomad/config.py
index c945732beb..c4545a7c09 100644
--- a/nomad/config.py
+++ b/nomad/config.py
@@ -208,7 +208,7 @@ datacite = NomadConfig(
     password='*'
 )
 
-version = '0.7.10'
+version = '0.8.0'
 commit = gitinfo.commit
 release = 'devel'
 default_domain = 'dft'
diff --git a/ops/helm/nomad/Chart.yaml b/ops/helm/nomad/Chart.yaml
index 7f97fbca4a..ae5c367983 100644
--- a/ops/helm/nomad/Chart.yaml
+++ b/ops/helm/nomad/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v1
-appVersion: "0.7.10"
+appVersion: "0.8.0"
 description: A Helm chart for Kubernetes that only runs nomad services and uses externally hosted databases.
 name: nomad
-version: 0.7.10
+version: 0.8.0
diff --git a/setup.py b/setup.py
index 67d67e4809..6b0907a422 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.7.10',
+    version='0.8.0',
     description='The nomad@FAIRDI infrastructure python package',
     py_modules=['nomad'],
     install_requires=reqs,
-- 
GitLab