From 5f7adf839f32626ac6c8a9ff99c7c6a894baaffa Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Thu, 19 May 2022 14:39:57 +0100 Subject: [PATCH] build: json.gz format version bumped to 1.1 --- pyerrors/input/json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/input/json.py b/pyerrors/input/json.py index ac7963cc..31639287 100644 --- a/pyerrors/input/json.py +++ b/pyerrors/input/json.py @@ -165,7 +165,7 @@ def create_json_string(ol, description='', indent=1): d = {} d['program'] = 'pyerrors %s' % (pyerrorsversion.__version__) - d['version'] = '1.0' + d['version'] = '1.1' d['who'] = getpass.getuser() d['date'] = datetime.datetime.now().astimezone().strftime('%Y-%m-%d %H:%M:%S %z') d['host'] = socket.gethostname() + ', ' + platform.platform()