The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Added gfortran-8 and macos-11 to CI
- Introduced new overload for 'Configuration::get()' which returns a subconfig.
- Introduced ConfigurationIterator to reduced difficulty in accessing
string keys. Ended up with fairly general overloads of
get_key()
andget_value()
which are analogus toget()
.
- Introduced Fortran submodule for Configuration. Code was already long and now need to introduce an iterator class in the same namespace.
- Eliminated co-array reference in JSON examples
-
The interfaces to configuration have been considerably modified to better support some advanced use cases. Existing code that uses yaFyaml will generally require some changes See Examples directories for defacto documentation.
-
Tested with Intel 2021, gfortran 8.5, 9.4, 10.3, 11.2
- Ability to embed yaFyaml alongside the other GFE libraries in a superproject.
- Allow
get()
to have 0 selectors.
- Mappings with non-string keys (including complex keys) now supported.
- Introduced new interfaces, thought very similar to before. Most routines now also can provide an optional error message.
- Adopted CMake namespaces for package integration/management
- Incorrect handling of rc argument in
Configuration::at()
. The primary results were correct but the status was not filled.
- Bug fixed when value of key value pair starts with the dash character. The check to ensure the next char was not whitespace was incorrectly implemented. Reproducer added to test suite.
- Introduced workaround for gfortran-10 that was causing all sorts of memory corruption. (Ugly pervasive manual deallocation of polymorphic objects.)
-
Support for simple anchor/alias use cases.
-
Simple driver "to_json.x" that takes a YAML file name argument on the command line, parses the file, and dumps JSON formet to OUTPUT_UNIT. E.g.,
./to_json.x test.yaml > test.json
- Improved formatting of JSON output.
- Mistake in push for 0.3.4 including logic for uncommitted files.
- Quoted strings that contained non-string values (e.g., "2004") were being intrepreted as non-strings.
- Additional examples in Examples/JSON folder.
-
Support for simple anchor/alias use cases. No merges, just vanilly copy-in-place.
-
Simple driver "to_json.x" that takes a YAML file name argument on the command line, parses the file, and dumps JSON formet to OUTPUT_UNIT. E.g.,
./to_json.x test.yaml > test.json
- Improved formatting of JSON output.
- adapting to recent minor interface change in gFTL-shared Derived type "Pair" is now given a less generic name.
- Enabled Position Independent Code
- New example Serial2.F90
- workarounds for gFortran
- various missing checks on return status
- eliminated some debug print statements
- Bugfix for #include. GNU CPP requires double quotes for include files.
- Added examples - apparently failed to commit thes previously. Build with 'make Examples', and go to the build directory to run.
- New interfaces for Configuration::get()
- allow for default values and testing if present
- overload for intrinsics: integer, logical, real, deferred length char
- Introduced iterator to loop over elements at a single level
- still requires SELECT TYPE as iterator must use CLASS(*)
- Improved error handling throughout
- still needs more work.
- Some errors in lexing were exposed with pFlogger use cases.
- Initial implementation and unit tests
- Supports basic yaml subset. Exceptions include variant multiline strings, anchors, etc.
- "Works" with ifort 19.0.5, NAG 6.2, and gfortran 9.2
- Created some simple examples. (Still needs real documentation.)