We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b15c50 commit c41edddCopy full SHA for c41eddd
CHANGELOG
@@ -1,3 +1,9 @@
1
+1.3.1:
2
+ - String splitting is now an optional feature, enabled by the split_strings
3
+ property. Default string array output again resembles v1.2 output.
4
+ - Bugfix: For arrays of strings, a split string element will no longer
5
+ insert erroneous commas. Thanks to Jared Lewis for reporting.
6
+
7
1.3:
8
- Strings which exceed the column limit are now split across multiple
9
lines. Thanks to Xi Chen for reporting.
f90nml/__init__.py
@@ -6,7 +6,7 @@
from f90nml.namelist import Namelist
from f90nml.parser import Parser
-__version__ = '1.3'
+__version__ = '1.3.1'
10
11
12
def read(nml_path):
0 commit comments