From c41eddd6b7dac33fa0d8bf177121ddb0fa8521fb Mon Sep 17 00:00:00 2001 From: Marshall Ward Date: Tue, 25 May 2021 21:54:43 -0400 Subject: [PATCH] Version 1.3.1 update --- CHANGELOG | 6 ++++++ f90nml/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index e0274b1..1f586f0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +1.3.1: + - String splitting is now an optional feature, enabled by the split_strings + property. Default string array output again resembles v1.2 output. + - Bugfix: For arrays of strings, a split string element will no longer + insert erroneous commas. Thanks to Jared Lewis for reporting. + 1.3: - Strings which exceed the column limit are now split across multiple lines. Thanks to Xi Chen for reporting. diff --git a/f90nml/__init__.py b/f90nml/__init__.py index 6698d35..1bc47a2 100644 --- a/f90nml/__init__.py +++ b/f90nml/__init__.py @@ -6,7 +6,7 @@ from f90nml.namelist import Namelist from f90nml.parser import Parser -__version__ = '1.3' +__version__ = '1.3.1' def read(nml_path):