From 36d7acc143ccec04ee83bb61e7e7c31a74805af6 Mon Sep 17 00:00:00 2001
From: Martin Schroen <martin.schroen@ufz.de>
Date: Fri, 16 Aug 2019 11:53:17 +0100
Subject: [PATCH] added/updated version

---
 instantPASDy-GUI.py | 2 +-
 instantPASDy.py     | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/instantPASDy-GUI.py b/instantPASDy-GUI.py
index db069b1..0c22c3a 100644
--- a/instantPASDy-GUI.py
+++ b/instantPASDy-GUI.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+VERSION = '0.2 (2019-08-16)'
 
 import zipfile
 
@@ -47,7 +48,6 @@ def read_header(filename, archive=None):
         return(data_columns)
 
 ufzcolor = '#00508E'
-VERSION = '0.1a (2019-04-15)'
 
 from glob import glob
 import sys
diff --git a/instantPASDy.py b/instantPASDy.py
index d961f1c..3bd3029 100644
--- a/instantPASDy.py
+++ b/instantPASDy.py
@@ -1,3 +1,6 @@
+#!/usr/bin/env python
+VERSION = '0.2 (2019-08-16)'
+
 # Suppress nasty future warnings about pandas datetime conersion
 import warnings
 warnings.simplefilter(action='ignore', category=FutureWarning)
@@ -573,7 +576,7 @@ def yesno2bool(s):
 config = None
 
 def main(configfile=None):
-    print("Welcome to instant-PASDy!")
+    print("Welcome to instant-PASDy %s!" % VERSION)
 
     # Config
     config = configparser.ConfigParser()
-- 
GitLab