From 0674618208e5df4a92db7ea1dcddadeeab80dafc Mon Sep 17 00:00:00 2001
From: Markus Scheidgen <markus.scheidgen@gmail.com>
Date: Thu, 18 Jul 2019 12:00:18 +0200
Subject: [PATCH] Updated version information for v0.5.0.

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

diff --git a/README.md b/README.md
index 22db901ee2..7b7ca24d8b 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,11 @@ your browser.
 
 ## Change log
 
+### v0.5.0
+- Raw file API with support to list directories. This replaces the `files` calculation
+  metadata key. It was necessary due to arbitrary large lists of *auxfiles* in some
+  calculations.
+
 ### v0.4.6
 - admin commands to directly manipulate upload data
 - additional migration scripts
diff --git a/gui/package.json b/gui/package.json
index 95080f2d7b..9b41299fdc 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,6 +1,6 @@
 {
   "name": "nomad-fair-gui",
-  "version": "0.4.6",
+  "version": "0.5.0",
   "private": true,
   "dependencies": {
     "@material-ui/core": "^3.9.0",
diff --git a/nomad/config.py b/nomad/config.py
index 2a421f58a4..77df549174 100644
--- a/nomad/config.py
+++ b/nomad/config.py
@@ -171,7 +171,7 @@ client = NomadConfig(
     url='http://localhost:8000/fairdi/nomad/latest/api'
 )
 
-version = '0.4.6'
+version = '0.5.0'
 commit = gitinfo.commit
 release = 'devel'
 domain = 'DFT'
diff --git a/ops/helm/nomad/Chart.yaml b/ops/helm/nomad/Chart.yaml
index b0e6a11c8f..faeff171d1 100644
--- a/ops/helm/nomad/Chart.yaml
+++ b/ops/helm/nomad/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v1
-appVersion: "0.4.6"
+appVersion: "0.5.0"
 description: A Helm chart for Kubernetes that only runs nomad services and uses externally hosted databases.
 name: nomad
-version: 0.4.6
+version: 0.5.0
diff --git a/setup.py b/setup.py
index f83dcde2bb..e4a77ef976 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.4.6',
+    version='0.5.0',
     description='The nomad@FAIRDI infrastructure python package',
     py_modules=['nomad'],
     install_requires=reqs,
-- 
GitLab