Tags: forkrp/libyaml
Tags
v0.2.5 2020-06-01 - yaml#105 Allow question marks in plain scalars in flow collections - yaml#186 Emitter: Don't output trailing space for empty scalar nodes - yaml#185 Emitter: Output space after an alias mapping key - yaml#187 Add -h and --flow (on|off|keep) to run-*-test-suite - yaml#182 Remove unnecessary include and malloc - yaml#177 Add specific files back to .gitignore - yaml#181 Output error position in run-parser-test-suite.c - yaml#191 A couple patches to improve test suite support
v0.2.3 2020-04-11 - yaml#130 Fixed typo. - yaml#144 Fix typo in comment - yaml#140 Use pointer to const for strings that aren't/shouldn't be modified - yaml#128 Squash a couple of warnings in example-deconstructor-alt - yaml#151 Fix spelling for error message - yaml#161 Make appveyor config be a hidden file - yaml#159 Add CHANGES file - yaml#160 Always output document end before directive (YAML 1.2 compatibility) - yaml#162 Output document end marker after open ended scalars - yaml#157 change cmake target name from libOFF.a to libyaml.a - yaml#155 include/yaml.h: fix comments - yaml#169 Fixed missing token in example - yaml#127 Avoid recursion in the document loader. - yaml#172 Support %YAML 1.2 directives - yaml#66 Change dllexport controlling macro to use _WIN32
libyaml 0.2.2 release * yaml#95 -- build: do not install config.h * yaml#97 -- appveyor.yml: fix Release build * yaml#103 -- Remove unused code in yaml_document_delete * yaml#104 -- Allow colons in plain scalars inside flow collections * yaml#109 -- Fix comparison in tests/run-emitter.c * yaml#117 -- Fix typo error * yaml#119 -- The closing single quote needs to be indented... * yaml#121 -- fix token name typos in comments * yaml#122 -- Revert removing of open_ended after top level plain scalar * yaml#125 -- Cherry-picks from PR 27 * yaml#135 -- Windows/C89 compatibility * yaml#136 -- allow override of Windows static lib name
Merge pull request yaml#136 from nitzmahone/win_fixes allow override of Windows static lib name
Allow colons in plain scalars inside flow collections This is a followup to yaml#28 See http://yaml.org/spec/1.1/#nb-plain-char(c) and the following productions. This commit will allow `[http://example]`, but still fail for: - `[:foo]` - `[foo:]` See https://gist.github.com/perlpunk/de2c631a7b0e9002de351a680eadb573 for all the relevant cases where this change applies.
PreviousNext