From 5837bf1dfd7251a3384d7df050920a28ebde0db5 Mon Sep 17 00:00:00 2001
From: Markus Scheidgen <markus.scheidgen@gmail.com>
Date: Thu, 7 Mar 2019 15:21:42 +0100
Subject: [PATCH] New version.

---
 README.md                 | 7 +++++++
 nomad/processing/base.py  | 4 ++--
 ops/helm/nomad/Chart.yaml | 4 ++--
 setup.py                  | 2 +-
 4 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 5af5325928..46611e343a 100644
--- a/README.md
+++ b/README.md
@@ -52,3 +52,10 @@ python -m http.server 8888
 ```
 Open [http://localhost:8888/html/setup.html](http://localhost:8888/html/setup.html) in
 your browser.
+
+## Change log
+
+### v0.4.2
+- bugfixes regarding the migration
+- better migration configurability and reproducibility
+- scales to multi node kubernetes deployment
\ No newline at end of file
diff --git a/nomad/processing/base.py b/nomad/processing/base.py
index d3418808bf..f0df2604ee 100644
--- a/nomad/processing/base.py
+++ b/nomad/processing/base.py
@@ -150,8 +150,8 @@ class Proc(Document, metaclass=ProcMetaclass):
 
     def get_logger(self):
         return utils.get_logger(
-            'nomad.processing', current_task=self.current_task, proc=self.__class__.__name__,
-            current_process=self.current_process, process_status=self.process_status,
+            'nomad.processing', task=self.current_task, proc=self.__class__.__name__,
+            process=self.current_process, process_status=self.process_status,
             tasks_status=self.tasks_status)
 
     @classmethod
diff --git a/ops/helm/nomad/Chart.yaml b/ops/helm/nomad/Chart.yaml
index bb83caf11e..8847c1cec8 100644
--- a/ops/helm/nomad/Chart.yaml
+++ b/ops/helm/nomad/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v1
-appVersion: "0.4.1"
+appVersion: "0.4.2"
 description: A Helm chart for Kubernetes that only runs nomad services and uses externally hosted databases.
 name: nomad
-version: 0.4.1
+version: 0.4.2
diff --git a/setup.py b/setup.py
index 44f12460a5..1188b06535 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.1',
+    version='0.4.2',
     description='The nomad@FAIRDI infrastructure python package',
     py_modules=['nomad'],
     install_requires=reqs,
-- 
GitLab