Hello community,

here is the log from the commit of package libyaml for openSUSE:Factory checked 
in at 2020-08-19 18:44:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libyaml (Old)
 and      /work/SRC/openSUSE:Factory/.libyaml.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libyaml"

Wed Aug 19 18:44:29 2020 rev:19 rq:826902 version:0.2.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/libyaml/libyaml.changes  2020-04-25 
20:11:53.039988109 +0200
+++ /work/SRC/openSUSE:Factory/.libyaml.new.3399/libyaml.changes        
2020-08-19 18:45:00.831470610 +0200
@@ -1,0 +2,13 @@
+Sat Aug 15 22:27:54 UTC 2020 - Dirk Mueller <dmuel...@suse.com>
+
+- update to 0.2.5:
+  * Allow question marks in plain scalars in flow collections
+  * Emitter: Don't output trailing space for empty scalar nodes
+  * Emitter: Output space after an alias mapping key
+  * Add -h and --flow (on|off|keep) to run-*-test-suite
+  * Remove unnecessary include and malloc
+  * Add specific files back to .gitignore
+  * Output error position in run-parser-test-suite.c
+  * A couple patches to improve test suite support
+
+-------------------------------------------------------------------

Old:
----
  yaml-0.2.4.tar.gz

New:
----
  yaml-0.2.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libyaml.spec ++++++
--- /var/tmp/diff_new_pack.eHsrAp/_old  2020-08-19 18:45:03.239471889 +0200
+++ /var/tmp/diff_new_pack.eHsrAp/_new  2020-08-19 18:45:03.243471891 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libyaml
-Version:        0.2.4
+Version:        0.2.5
 Release:        0
 Summary:        A YAML parser and emitter written in C
 License:        MIT

++++++ yaml-0.2.4.tar.gz -> yaml-0.2.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/CMakeLists.txt 
new/yaml-0.2.5/CMakeLists.txt
--- old/yaml-0.2.4/CMakeLists.txt       2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/CMakeLists.txt       2020-06-01 23:34:52.000000000 +0200
@@ -4,7 +4,7 @@
 
 set (YAML_VERSION_MAJOR 0)
 set (YAML_VERSION_MINOR 2)
-set (YAML_VERSION_PATCH 4)
+set (YAML_VERSION_PATCH 5)
 set (YAML_VERSION_STRING 
"${YAML_VERSION_MAJOR}.${YAML_VERSION_MINOR}.${YAML_VERSION_PATCH}")
 
 option(BUILD_SHARED_LIBS "Build libyaml as a shared library" OFF)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/Changes new/yaml-0.2.5/Changes
--- old/yaml-0.2.4/Changes      2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/Changes      2020-06-01 23:34:52.000000000 +0200
@@ -1,3 +1,29 @@
+0.2.5 2020-06-01
+
+https://github.com/yaml/libyaml/pull/105
+Allow question marks in plain scalars in flow collections
+
+https://github.com/yaml/libyaml/pull/186
+Emitter: Don't output trailing space for empty scalar nodes
+
+https://github.com/yaml/libyaml/pull/185
+Emitter: Output space after an alias mapping key
+
+https://github.com/yaml/libyaml/pull/187
+Add -h and --flow (on|off|keep) to run-*-test-suite
+
+https://github.com/yaml/libyaml/pull/182
+Remove unnecessary include and malloc
+
+https://github.com/yaml/libyaml/pull/177
+Add specific files back to .gitignore
+
+https://github.com/yaml/libyaml/pull/181
+Output error position in run-parser-test-suite.c
+
+https://github.com/yaml/libyaml/pull/191
+A couple patches to improve test suite support
+
 0.2.4 2020-04-19
 
   - https://github.com/yaml/libyaml/pull/143
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/Makefile.am new/yaml-0.2.5/Makefile.am
--- old/yaml-0.2.4/Makefile.am  2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/Makefile.am  2020-06-01 23:34:52.000000000 +0200
@@ -5,6 +5,10 @@
 
 EXTRA_DIST = Changes ReadMe.md License CMakeLists.txt doc/doxygen.cfg
 
+LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT := https://github.com/yaml/libyaml
+LIBYAML_TEST_SUITE_RUN_REPO ?= $(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT)
+LIBYAML_TEST_SUITE_RUN_BRANCH ?= run-test-suite
+
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = yaml-0.1.pc
 
@@ -31,9 +35,13 @@
 test-all: test test-suite
 
 tests/run-test-suite:
-       -git branch --track run-test-suite origin/run-test-suite
-       -git worktree prune
-       git worktree add $@ run-test-suite
+ifeq ($(LIBYAML_TEST_SUITE_RUN_REPO),$(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT))
+         -git branch --track $(LIBYAML_TEST_SUITE_RUN_BRANCH) 
origin/$(LIBYAML_TEST_SUITE_RUN_BRANCH)
+         -git worktree prune
+         git worktree add $@ $(LIBYAML_TEST_SUITE_RUN_BRANCH)
+    else
+         git clone --branch $(LIBYAML_TEST_SUITE_RUN_BRANCH) 
$(LIBYAML_TEST_SUITE_RUN_REPO) $@
+    endif
 
 packaging:
        -git branch --track $@ origin/$@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/Makefile.in new/yaml-0.2.5/Makefile.in
--- old/yaml-0.2.4/Makefile.in  2020-04-19 13:15:50.000000000 +0200
+++ new/yaml-0.2.5/Makefile.in  2020-06-01 23:34:56.000000000 +0200
@@ -358,6 +358,7 @@
 top_srcdir = @top_srcdir@
 SUBDIRS = include src . tests
 EXTRA_DIST = Changes ReadMe.md License CMakeLists.txt doc/doxygen.cfg
+LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT := https://github.com/yaml/libyaml
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = yaml-0.1.pc
 all: all-recursive
@@ -854,6 +855,8 @@
 
 .PRECIOUS: Makefile
 
+LIBYAML_TEST_SUITE_RUN_REPO ?= $(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT)
+LIBYAML_TEST_SUITE_RUN_BRANCH ?= run-test-suite
 
 maintainer-clean-local:
        rm -f aclocal.m4 config.h.in configure config/*
@@ -878,9 +881,13 @@
 test-all: test test-suite
 
 tests/run-test-suite:
-       -git branch --track run-test-suite origin/run-test-suite
-       -git worktree prune
-       git worktree add $@ run-test-suite
+ifeq ($(LIBYAML_TEST_SUITE_RUN_REPO),$(LIBYAML_TEST_SUITE_RUN_REPO_DEFAULT))
+         -git branch --track $(LIBYAML_TEST_SUITE_RUN_BRANCH) 
origin/$(LIBYAML_TEST_SUITE_RUN_BRANCH)
+         -git worktree prune
+         git worktree add $@ $(LIBYAML_TEST_SUITE_RUN_BRANCH)
+    else
+         git clone --branch $(LIBYAML_TEST_SUITE_RUN_BRANCH) 
$(LIBYAML_TEST_SUITE_RUN_REPO) $@
+    endif
 
 packaging:
        -git branch --track $@ origin/$@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/configure new/yaml-0.2.5/configure
--- old/yaml-0.2.4/configure    2020-04-19 13:15:50.000000000 +0200
+++ new/yaml-0.2.5/configure    2020-06-01 23:34:55.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yaml 0.2.4.
+# Generated by GNU Autoconf 2.69 for yaml 0.2.5.
 #
 # Report bugs to <https://github.com/yaml/libyaml/issues/new>.
 #
@@ -589,8 +589,8 @@
 # Identity of this package.
 PACKAGE_NAME='yaml'
 PACKAGE_TARNAME='yaml'
-PACKAGE_VERSION='0.2.4'
-PACKAGE_STRING='yaml 0.2.4'
+PACKAGE_VERSION='0.2.5'
+PACKAGE_STRING='yaml 0.2.5'
 PACKAGE_BUGREPORT='https://github.com/yaml/libyaml/issues/new'
 PACKAGE_URL=''
 
@@ -1329,7 +1329,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures yaml 0.2.4 to adapt to many kinds of systems.
+\`configure' configures yaml 0.2.5 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1400,7 +1400,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of yaml 0.2.4:";;
+     short | recursive ) echo "Configuration of yaml 0.2.5:";;
    esac
   cat <<\_ACEOF
 
@@ -1510,7 +1510,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yaml configure 0.2.4
+yaml configure 0.2.5
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1933,7 +1933,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yaml $as_me 0.2.4, which was
+It was created by yaml $as_me 0.2.5, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2798,7 +2798,7 @@
 
 # Define the identity of the package.
  PACKAGE='yaml'
- VERSION='0.2.4'
+ VERSION='0.2.5'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2900,16 +2900,16 @@
 $as_echo "#define YAML_VERSION_MINOR 2" >>confdefs.h
 
 
-$as_echo "#define YAML_VERSION_PATCH 4" >>confdefs.h
+$as_echo "#define YAML_VERSION_PATCH 5" >>confdefs.h
 
 
-$as_echo "#define YAML_VERSION_STRING \"0.2.4\"" >>confdefs.h
+$as_echo "#define YAML_VERSION_STRING \"0.2.5\"" >>confdefs.h
 
 
 # Define substitutions for the libtool version numbers.
 YAML_LT_RELEASE=0
 YAML_LT_CURRENT=2
-YAML_LT_REVISION=8
+YAML_LT_REVISION=9
 YAML_LT_AGE=0
 
 
@@ -12878,7 +12878,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yaml $as_me 0.2.4, which was
+This file was extended by yaml $as_me 0.2.5, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -12944,7 +12944,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-yaml config.status 0.2.4
+yaml config.status 0.2.5
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/configure.ac new/yaml-0.2.5/configure.ac
--- old/yaml-0.2.4/configure.ac 2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/configure.ac 2020-06-01 23:34:52.000000000 +0200
@@ -3,7 +3,7 @@
 # Define the package version numbers and the bug reporting link.
 m4_define([YAML_MAJOR], 0)
 m4_define([YAML_MINOR], 2)
-m4_define([YAML_PATCH], 4)
+m4_define([YAML_PATCH], 5)
 m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
 
 # Define the libtool version numbers; check the Autobook, Section 11.4.
@@ -19,7 +19,7 @@
 #           YAML_AGE = 0
 m4_define([YAML_RELEASE], 0)
 m4_define([YAML_CURRENT], 2)
-m4_define([YAML_REVISION], 8)
+m4_define([YAML_REVISION], 9)
 m4_define([YAML_AGE], 0)
 
 # Initialize autoconf & automake.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/annotated.html 
new/yaml-0.2.5/doc/html/annotated.html
--- old/yaml-0.2.4/doc/html/annotated.html      2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/annotated.html      2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/classes.html 
new/yaml-0.2.5/doc/html/classes.html
--- old/yaml-0.2.4/doc/html/classes.html        2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/classes.html        2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/files.html 
new/yaml-0.2.5/doc/html/files.html
--- old/yaml-0.2.4/doc/html/files.html  2020-04-19 13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/files.html  2020-06-01 23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions.html 
new/yaml-0.2.5/doc/html/functions.html
--- old/yaml-0.2.4/doc/html/functions.html      2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions.html      2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_b.html 
new/yaml-0.2.5/doc/html/functions_b.html
--- old/yaml-0.2.4/doc/html/functions_b.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_b.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_c.html 
new/yaml-0.2.5/doc/html/functions_c.html
--- old/yaml-0.2.4/doc/html/functions_c.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_c.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_d.html 
new/yaml-0.2.5/doc/html/functions_d.html
--- old/yaml-0.2.4/doc/html/functions_d.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_d.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_e.html 
new/yaml-0.2.5/doc/html/functions_e.html
--- old/yaml-0.2.4/doc/html/functions_e.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_e.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_f.html 
new/yaml-0.2.5/doc/html/functions_f.html
--- old/yaml-0.2.4/doc/html/functions_f.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_f.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_h.html 
new/yaml-0.2.5/doc/html/functions_h.html
--- old/yaml-0.2.4/doc/html/functions_h.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_h.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_i.html 
new/yaml-0.2.5/doc/html/functions_i.html
--- old/yaml-0.2.4/doc/html/functions_i.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_i.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_k.html 
new/yaml-0.2.5/doc/html/functions_k.html
--- old/yaml-0.2.4/doc/html/functions_k.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_k.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_l.html 
new/yaml-0.2.5/doc/html/functions_l.html
--- old/yaml-0.2.4/doc/html/functions_l.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_l.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_m.html 
new/yaml-0.2.5/doc/html/functions_m.html
--- old/yaml-0.2.4/doc/html/functions_m.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_m.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_n.html 
new/yaml-0.2.5/doc/html/functions_n.html
--- old/yaml-0.2.4/doc/html/functions_n.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_n.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_o.html 
new/yaml-0.2.5/doc/html/functions_o.html
--- old/yaml-0.2.4/doc/html/functions_o.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_o.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_p.html 
new/yaml-0.2.5/doc/html/functions_p.html
--- old/yaml-0.2.4/doc/html/functions_p.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_p.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_q.html 
new/yaml-0.2.5/doc/html/functions_q.html
--- old/yaml-0.2.4/doc/html/functions_q.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_q.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_r.html 
new/yaml-0.2.5/doc/html/functions_r.html
--- old/yaml-0.2.4/doc/html/functions_r.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_r.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_s.html 
new/yaml-0.2.5/doc/html/functions_s.html
--- old/yaml-0.2.4/doc/html/functions_s.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_s.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_t.html 
new/yaml-0.2.5/doc/html/functions_t.html
--- old/yaml-0.2.4/doc/html/functions_t.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_t.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_u.html 
new/yaml-0.2.5/doc/html/functions_u.html
--- old/yaml-0.2.4/doc/html/functions_u.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_u.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_v.html 
new/yaml-0.2.5/doc/html/functions_v.html
--- old/yaml-0.2.4/doc/html/functions_v.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_v.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars.html 
new/yaml-0.2.5/doc/html/functions_vars.html
--- old/yaml-0.2.4/doc/html/functions_vars.html 2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_vars.html 2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_b.html 
new/yaml-0.2.5/doc/html/functions_vars_b.html
--- old/yaml-0.2.4/doc/html/functions_vars_b.html       2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_b.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_c.html 
new/yaml-0.2.5/doc/html/functions_vars_c.html
--- old/yaml-0.2.4/doc/html/functions_vars_c.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_c.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_d.html 
new/yaml-0.2.5/doc/html/functions_vars_d.html
--- old/yaml-0.2.4/doc/html/functions_vars_d.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_d.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_e.html 
new/yaml-0.2.5/doc/html/functions_vars_e.html
--- old/yaml-0.2.4/doc/html/functions_vars_e.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_e.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_f.html 
new/yaml-0.2.5/doc/html/functions_vars_f.html
--- old/yaml-0.2.4/doc/html/functions_vars_f.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_f.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_h.html 
new/yaml-0.2.5/doc/html/functions_vars_h.html
--- old/yaml-0.2.4/doc/html/functions_vars_h.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_h.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_i.html 
new/yaml-0.2.5/doc/html/functions_vars_i.html
--- old/yaml-0.2.4/doc/html/functions_vars_i.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_i.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_k.html 
new/yaml-0.2.5/doc/html/functions_vars_k.html
--- old/yaml-0.2.4/doc/html/functions_vars_k.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_k.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_l.html 
new/yaml-0.2.5/doc/html/functions_vars_l.html
--- old/yaml-0.2.4/doc/html/functions_vars_l.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_l.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_m.html 
new/yaml-0.2.5/doc/html/functions_vars_m.html
--- old/yaml-0.2.4/doc/html/functions_vars_m.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_m.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_n.html 
new/yaml-0.2.5/doc/html/functions_vars_n.html
--- old/yaml-0.2.4/doc/html/functions_vars_n.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_n.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_o.html 
new/yaml-0.2.5/doc/html/functions_vars_o.html
--- old/yaml-0.2.4/doc/html/functions_vars_o.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_o.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_p.html 
new/yaml-0.2.5/doc/html/functions_vars_p.html
--- old/yaml-0.2.4/doc/html/functions_vars_p.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_p.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_q.html 
new/yaml-0.2.5/doc/html/functions_vars_q.html
--- old/yaml-0.2.4/doc/html/functions_vars_q.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_q.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_r.html 
new/yaml-0.2.5/doc/html/functions_vars_r.html
--- old/yaml-0.2.4/doc/html/functions_vars_r.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_r.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_s.html 
new/yaml-0.2.5/doc/html/functions_vars_s.html
--- old/yaml-0.2.4/doc/html/functions_vars_s.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_s.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_t.html 
new/yaml-0.2.5/doc/html/functions_vars_t.html
--- old/yaml-0.2.4/doc/html/functions_vars_t.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_t.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_u.html 
new/yaml-0.2.5/doc/html/functions_vars_u.html
--- old/yaml-0.2.4/doc/html/functions_vars_u.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_u.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_v.html 
new/yaml-0.2.5/doc/html/functions_vars_v.html
--- old/yaml-0.2.4/doc/html/functions_vars_v.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_v.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_vars_w.html 
new/yaml-0.2.5/doc/html/functions_vars_w.html
--- old/yaml-0.2.4/doc/html/functions_vars_w.html       2020-04-19 
13:15:53.000000000 +0200
+++ new/yaml-0.2.5/doc/html/functions_vars_w.html       2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/functions_w.html 
new/yaml-0.2.5/doc/html/functions_w.html
--- old/yaml-0.2.4/doc/html/functions_w.html    2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/functions_w.html    2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals.html 
new/yaml-0.2.5/doc/html/globals.html
--- old/yaml-0.2.4/doc/html/globals.html        2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals.html        2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals_defs.html 
new/yaml-0.2.5/doc/html/globals_defs.html
--- old/yaml-0.2.4/doc/html/globals_defs.html   2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals_defs.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals_enum.html 
new/yaml-0.2.5/doc/html/globals_enum.html
--- old/yaml-0.2.4/doc/html/globals_enum.html   2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals_enum.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals_eval.html 
new/yaml-0.2.5/doc/html/globals_eval.html
--- old/yaml-0.2.4/doc/html/globals_eval.html   2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals_eval.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals_func.html 
new/yaml-0.2.5/doc/html/globals_func.html
--- old/yaml-0.2.4/doc/html/globals_func.html   2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals_func.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/globals_type.html 
new/yaml-0.2.5/doc/html/globals_type.html
--- old/yaml-0.2.4/doc/html/globals_type.html   2020-04-19 13:15:53.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/globals_type.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__basic.html 
new/yaml-0.2.5/doc/html/group__basic.html
--- old/yaml-0.2.4/doc/html/group__basic.html   2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__basic.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__emitter.html 
new/yaml-0.2.5/doc/html/group__emitter.html
--- old/yaml-0.2.4/doc/html/group__emitter.html 2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__emitter.html 2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__events.html 
new/yaml-0.2.5/doc/html/group__events.html
--- old/yaml-0.2.4/doc/html/group__events.html  2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__events.html  2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__export.html 
new/yaml-0.2.5/doc/html/group__export.html
--- old/yaml-0.2.4/doc/html/group__export.html  2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__export.html  2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__nodes.html 
new/yaml-0.2.5/doc/html/group__nodes.html
--- old/yaml-0.2.4/doc/html/group__nodes.html   2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__nodes.html   2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__parser.html 
new/yaml-0.2.5/doc/html/group__parser.html
--- old/yaml-0.2.4/doc/html/group__parser.html  2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__parser.html  2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__styles.html 
new/yaml-0.2.5/doc/html/group__styles.html
--- old/yaml-0.2.4/doc/html/group__styles.html  2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__styles.html  2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__tokens.html 
new/yaml-0.2.5/doc/html/group__tokens.html
--- old/yaml-0.2.4/doc/html/group__tokens.html  2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__tokens.html  2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/group__version.html 
new/yaml-0.2.5/doc/html/group__version.html
--- old/yaml-0.2.4/doc/html/group__version.html 2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/group__version.html 2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/index.html 
new/yaml-0.2.5/doc/html/index.html
--- old/yaml-0.2.4/doc/html/index.html  2020-04-19 13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/index.html  2020-06-01 23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/modules.html 
new/yaml-0.2.5/doc/html/modules.html
--- old/yaml-0.2.4/doc/html/modules.html        2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/modules.html        2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__alias__data__s.html 
new/yaml-0.2.5/doc/html/structyaml__alias__data__s.html
--- old/yaml-0.2.4/doc/html/structyaml__alias__data__s.html     2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__alias__data__s.html     2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__anchors__s.html 
new/yaml-0.2.5/doc/html/structyaml__anchors__s.html
--- old/yaml-0.2.4/doc/html/structyaml__anchors__s.html 2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__anchors__s.html 2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__document__s.html 
new/yaml-0.2.5/doc/html/structyaml__document__s.html
--- old/yaml-0.2.4/doc/html/structyaml__document__s.html        2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__document__s.html        2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__emitter__s.html 
new/yaml-0.2.5/doc/html/structyaml__emitter__s.html
--- old/yaml-0.2.4/doc/html/structyaml__emitter__s.html 2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__emitter__s.html 2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__event__s.html 
new/yaml-0.2.5/doc/html/structyaml__event__s.html
--- old/yaml-0.2.4/doc/html/structyaml__event__s.html   2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__event__s.html   2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__mark__s.html 
new/yaml-0.2.5/doc/html/structyaml__mark__s.html
--- old/yaml-0.2.4/doc/html/structyaml__mark__s.html    2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__mark__s.html    2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__node__pair__s.html 
new/yaml-0.2.5/doc/html/structyaml__node__pair__s.html
--- old/yaml-0.2.4/doc/html/structyaml__node__pair__s.html      2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__node__pair__s.html      2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__node__s.html 
new/yaml-0.2.5/doc/html/structyaml__node__s.html
--- old/yaml-0.2.4/doc/html/structyaml__node__s.html    2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__node__s.html    2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__parser__s.html 
new/yaml-0.2.5/doc/html/structyaml__parser__s.html
--- old/yaml-0.2.4/doc/html/structyaml__parser__s.html  2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__parser__s.html  2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__simple__key__s.html 
new/yaml-0.2.5/doc/html/structyaml__simple__key__s.html
--- old/yaml-0.2.4/doc/html/structyaml__simple__key__s.html     2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__simple__key__s.html     2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yaml-0.2.4/doc/html/structyaml__tag__directive__s.html 
new/yaml-0.2.5/doc/html/structyaml__tag__directive__s.html
--- old/yaml-0.2.4/doc/html/structyaml__tag__directive__s.html  2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__tag__directive__s.html  2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/structyaml__token__s.html 
new/yaml-0.2.5/doc/html/structyaml__token__s.html
--- old/yaml-0.2.4/doc/html/structyaml__token__s.html   2020-04-19 
13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__token__s.html   2020-06-01 
23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yaml-0.2.4/doc/html/structyaml__version__directive__s.html 
new/yaml-0.2.5/doc/html/structyaml__version__directive__s.html
--- old/yaml-0.2.4/doc/html/structyaml__version__directive__s.html      
2020-04-19 13:15:52.000000000 +0200
+++ new/yaml-0.2.5/doc/html/structyaml__version__directive__s.html      
2020-06-01 23:34:58.000000000 +0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/doc/html/yaml_8h.html 
new/yaml-0.2.5/doc/html/yaml_8h.html
--- old/yaml-0.2.4/doc/html/yaml_8h.html        2020-04-19 13:15:52.000000000 
+0200
+++ new/yaml-0.2.5/doc/html/yaml_8h.html        2020-06-01 23:34:58.000000000 
+0200
@@ -19,7 +19,7 @@
  <tr style="height: 56px;">
   <td id="projectalign" style="padding-left: 0.5em;">
    <div id="projectname">yaml
-   &#160;<span id="projectnumber">0.2.4</span>
+   &#160;<span id="projectnumber">0.2.5</span>
    </div>
   </td>
  </tr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/include/yaml.h 
new/yaml-0.2.5/include/yaml.h
--- old/yaml-0.2.4/include/yaml.h       2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/include/yaml.h       2020-06-01 23:34:52.000000000 +0200
@@ -1020,6 +1020,7 @@
     YAML_PARSE_DOCUMENT_CONTENT_STATE,
     /** Expect DOCUMENT-END. */
     YAML_PARSE_DOCUMENT_END_STATE,
+
     /** Expect a block node. */
     YAML_PARSE_BLOCK_NODE_STATE,
     /** Expect a block node or indentless sequence. */
@@ -1030,6 +1031,7 @@
     YAML_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE,
     /** Expect an entry of a block sequence. */
     YAML_PARSE_BLOCK_SEQUENCE_ENTRY_STATE,
+
     /** Expect an entry of an indentless sequence. */
     YAML_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE,
     /** Expect the first key of a block mapping. */
@@ -1040,6 +1042,7 @@
     YAML_PARSE_BLOCK_MAPPING_VALUE_STATE,
     /** Expect the first entry of a flow sequence. */
     YAML_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE,
+
     /** Expect an entry of a flow sequence. */
     YAML_PARSE_FLOW_SEQUENCE_ENTRY_STATE,
     /** Expect a key of an ordered mapping. */
@@ -1051,6 +1054,7 @@
     /** Expect the first key of a flow mapping. */
     YAML_PARSE_FLOW_MAPPING_FIRST_KEY_STATE,
     /** Expect a key of a flow mapping. */
+
     YAML_PARSE_FLOW_MAPPING_KEY_STATE,
     /** Expect a value of a flow mapping. */
     YAML_PARSE_FLOW_MAPPING_VALUE_STATE,
@@ -1489,6 +1493,7 @@
     YAML_EMIT_DOCUMENT_CONTENT_STATE,
     /** Expect DOCUMENT-END. */
     YAML_EMIT_DOCUMENT_END_STATE,
+
     /** Expect the first item of a flow sequence. */
     YAML_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE,
     /** Expect an item of a flow sequence. */
@@ -1499,6 +1504,7 @@
     YAML_EMIT_FLOW_MAPPING_KEY_STATE,
     /** Expect a value for a simple key of a flow mapping. */
     YAML_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE,
+
     /** Expect a value of a flow mapping. */
     YAML_EMIT_FLOW_MAPPING_VALUE_STATE,
     /** Expect the first item of a block sequence. */
@@ -1509,6 +1515,7 @@
     YAML_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE,
     /** Expect the key of a block mapping. */
     YAML_EMIT_BLOCK_MAPPING_KEY_STATE,
+
     /** Expect a value for a simple key of a block mapping. */
     YAML_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE,
     /** Expect a value of a block mapping. */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/src/emitter.c new/yaml-0.2.5/src/emitter.c
--- old/yaml-0.2.4/src/emitter.c        2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/src/emitter.c        2020-06-01 23:34:52.000000000 +0200
@@ -1023,6 +1023,8 @@
 {
     if (!yaml_emitter_process_anchor(emitter))
         return 0;
+    if (emitter->simple_key_context)
+        if (!PUT(emitter, ' ')) return 0;
     emitter->state = POP(emitter, emitter->states);
 
     return 1;
@@ -1923,7 +1925,17 @@
 
     STRING_ASSIGN(string, value, length);
 
-    if (!emitter->whitespace) {
+    /**
+     * Avoid trailing spaces for empty values in block mode.
+     * In flow mode, we still want the space to prevent ambiguous things
+     * like {a:}.
+     * Currently, the emitter forbids any plain empty scalar in flow mode
+     * (e.g. it outputs {a: ''} instead), so emitter->flow_level will
+     * never be true here.
+     * But if the emitter is ever changed to allow emitting empty values,
+     * the check for flow_level is already here.
+     */
+    if (!emitter->whitespace && (length || emitter->flow_level)) {
         if (!PUT(emitter, ' ')) return 0;
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/src/scanner.c new/yaml-0.2.5/src/scanner.c
--- old/yaml-0.2.4/src/scanner.c        2020-04-19 13:15:46.000000000 +0200
+++ new/yaml-0.2.5/src/scanner.c        2020-06-01 23:34:52.000000000 +0200
@@ -712,7 +712,7 @@
         yaml_mark_t start_mark, yaml_char_t **handle);
 
 static int
-yaml_parser_scan_tag_uri(yaml_parser_t *parser, int directive,
+yaml_parser_scan_tag_uri(yaml_parser_t *parser, int uri_char, int directive,
         yaml_char_t *head, yaml_mark_t start_mark, yaml_char_t **uri);
 
 static int
@@ -2293,7 +2293,7 @@
 
     /* Scan a prefix. */
 
-    if (!yaml_parser_scan_tag_uri(parser, 1, NULL, start_mark, &prefix_value))
+    if (!yaml_parser_scan_tag_uri(parser, 1, 1, NULL, start_mark, 
&prefix_value))
         goto error;
 
     /* Expect a whitespace or line break. */
@@ -2411,7 +2411,7 @@
 
         /* Consume the tag value. */
 
-        if (!yaml_parser_scan_tag_uri(parser, 0, NULL, start_mark, &suffix))
+        if (!yaml_parser_scan_tag_uri(parser, 1, 0, NULL, start_mark, &suffix))
             goto error;
 
         /* Check for '>' and eat it. */
@@ -2439,14 +2439,14 @@
         {
             /* Scan the suffix now. */
 
-            if (!yaml_parser_scan_tag_uri(parser, 0, NULL, start_mark, 
&suffix))
+            if (!yaml_parser_scan_tag_uri(parser, 0, 0, NULL, start_mark, 
&suffix))
                 goto error;
         }
         else
         {
             /* It wasn't a handle after all.  Scan the rest of the tag. */
 
-            if (!yaml_parser_scan_tag_uri(parser, 0, handle, start_mark, 
&suffix))
+            if (!yaml_parser_scan_tag_uri(parser, 0, 0, handle, start_mark, 
&suffix))
                 goto error;
 
             /* Set the handle to '!'. */
@@ -2475,9 +2475,11 @@
     if (!CACHE(parser, 1)) goto error;
 
     if (!IS_BLANKZ(parser->buffer)) {
-        yaml_parser_set_scanner_error(parser, "while scanning a tag",
-                start_mark, "did not find expected whitespace or line break");
-        goto error;
+        if (!parser->flow_level || !CHECK(parser->buffer, ',') ) {
+            yaml_parser_set_scanner_error(parser, "while scanning a tag",
+                    start_mark, "did not find expected whitespace or line 
break");
+            goto error;
+        }
     }
 
     end_mark = parser->mark;
@@ -2566,7 +2568,7 @@
  */
 
 static int
-yaml_parser_scan_tag_uri(yaml_parser_t *parser, int directive,
+yaml_parser_scan_tag_uri(yaml_parser_t *parser, int uri_char, int directive,
         yaml_char_t *head, yaml_mark_t start_mark, yaml_char_t **uri)
 {
     size_t length = head ? strlen((char *)head) : 0;
@@ -2602,8 +2604,11 @@
      * The set of characters that may appear in URI is as follows:
      *
      *      '0'-'9', 'A'-'Z', 'a'-'z', '_', '-', ';', '/', '?', ':', '@', '&',
-     *      '=', '+', '$', ',', '.', '!', '~', '*', '\'', '(', ')', '[', ']',
-     *      '%'.
+     *      '=', '+', '$', '.', '!', '~', '*', '\'', '(', ')', '%'.
+     *
+     * If we are inside a verbatim tag <...> (parameter uri_char is true)
+     * then also the following flow indicators are allowed:
+     *      ',', '[', ']'
      */
 
     while (IS_ALPHA(parser->buffer) || CHECK(parser->buffer, ';')
@@ -2611,12 +2616,15 @@
             || CHECK(parser->buffer, ':') || CHECK(parser->buffer, '@')
             || CHECK(parser->buffer, '&') || CHECK(parser->buffer, '=')
             || CHECK(parser->buffer, '+') || CHECK(parser->buffer, '$')
-            || CHECK(parser->buffer, ',') || CHECK(parser->buffer, '.')
+            || CHECK(parser->buffer, '.') || CHECK(parser->buffer, '%')
             || CHECK(parser->buffer, '!') || CHECK(parser->buffer, '~')
             || CHECK(parser->buffer, '*') || CHECK(parser->buffer, '\'')
             || CHECK(parser->buffer, '(') || CHECK(parser->buffer, ')')
-            || CHECK(parser->buffer, '[') || CHECK(parser->buffer, ']')
-            || CHECK(parser->buffer, '%'))
+            || (uri_char && (
+                CHECK(parser->buffer, ',')
+                || CHECK(parser->buffer, '[') || CHECK(parser->buffer, ']')
+                )
+            ))
     {
         /* Check if it is a URI-escape sequence. */
 
@@ -3457,7 +3465,7 @@
             if ((CHECK(parser->buffer, ':') && IS_BLANKZ_AT(parser->buffer, 1))
                     || (parser->flow_level &&
                         (CHECK(parser->buffer, ',')
-                         || CHECK(parser->buffer, '?') || 
CHECK(parser->buffer, '[')
+                         || CHECK(parser->buffer, '[')
                          || CHECK(parser->buffer, ']') || 
CHECK(parser->buffer, '{')
                          || CHECK(parser->buffer, '}'))))
                 break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/tests/run-emitter-test-suite.c 
new/yaml-0.2.5/tests/run-emitter-test-suite.c
--- old/yaml-0.2.4/tests/run-emitter-test-suite.c       2020-04-19 
13:15:46.000000000 +0200
+++ new/yaml-0.2.5/tests/run-emitter-test-suite.c       2020-06-01 
23:34:52.000000000 +0200
@@ -24,13 +24,27 @@
     int foundfile = 0;
     int i = 0;
     int minor = 0;
+    int flow = -1; /** default no flow style collections */
 
     for (i = 1; i < argc; i++) {
         if (strncmp(argv[i], "--help", 6) == 0)
             return usage(0);
         if (strncmp(argv[i], "-h", 2) == 0)
             return usage(0);
-        if (strncmp(argv[i], "--directive", 11) == 0) {
+        if (strncmp(argv[i], "--flow", 6) == 0) {
+            if (i+1 == argc)
+                return usage(1);
+            i++;
+            if (strncmp(argv[i], "keep", 4) == 0)
+                flow = 0;
+            else if (strncmp(argv[i], "on", 2) == 0)
+                flow = 1;
+            else if (strncmp(argv[i], "off", 3) == 0)
+                flow = -1;
+            else
+                return usage(1);
+        }
+        else if (strncmp(argv[i], "--directive", 11) == 0) {
             if (i+1 == argc)
                 return usage(1);
             i++;
@@ -71,6 +85,7 @@
         char anchor[256];
         char tag[256];
         int implicit;
+        int style;
 
         if (strncmp(line, "+STR", 4) == 0) {
             ok = yaml_stream_start_event_initialize(&event, 
YAML_UTF8_ENCODING);
@@ -79,25 +94,35 @@
             ok = yaml_stream_end_event_initialize(&event);
         }
         else if (strncmp(line, "+DOC", 4) == 0) {
-            implicit = strncmp(line, "+DOC ---", 8) != 0;
+            implicit = strncmp(line+4, " ---", 4) != 0;
             ok = yaml_document_start_event_initialize(&event, 
version_directive, NULL, NULL, implicit);
         }
         else if (strncmp(line, "-DOC", 4) == 0) {
-            implicit = strncmp(line, "-DOC ...", 8) != 0;
+            implicit = strncmp(line+4, " ...", 4) != 0;
             ok = yaml_document_end_event_initialize(&event, implicit);
         }
         else if (strncmp(line, "+MAP", 4) == 0) {
+            style = YAML_BLOCK_MAPPING_STYLE;
+            if (flow == 1)
+                style = YAML_FLOW_MAPPING_STYLE;
+            else if (flow == 0 && strncmp(line+5, "{}", 2) == 0)
+                style = YAML_FLOW_MAPPING_STYLE;
             ok = yaml_mapping_start_event_initialize(&event, (yaml_char_t *)
                                                      get_anchor('&', line, 
anchor), (yaml_char_t *)
-                                                     get_tag(line, tag), 0, 
YAML_BLOCK_MAPPING_STYLE);
+                                                     get_tag(line, tag), 0, 
style);
         }
         else if (strncmp(line, "-MAP", 4) == 0) {
             ok = yaml_mapping_end_event_initialize(&event);
         }
         else if (strncmp(line, "+SEQ", 4) == 0) {
+            style = YAML_BLOCK_SEQUENCE_STYLE;
+            if (flow == 1)
+                style = YAML_FLOW_MAPPING_STYLE;
+            else if (flow == 0 && strncmp(line+5, "[]", 2) == 0)
+                style = YAML_FLOW_SEQUENCE_STYLE;
             ok = yaml_sequence_start_event_initialize(&event, (yaml_char_t *)
                                                       get_anchor('&', line, 
anchor), (yaml_char_t *)
-                                                      get_tag(line, tag), 0, 
YAML_BLOCK_SEQUENCE_STYLE);
+                                                      get_tag(line, tag), 0, 
style);
         }
         else if (strncmp(line, "-SEQ", 4) == 0) {
             ok = yaml_sequence_end_event_initialize(&event);
@@ -260,6 +285,6 @@
 }
 
 int usage(int ret) {
-    fprintf(stderr, "Usage: run-emitter-test-suite [--directive (1.1|1.2)] 
[<input-file>]\n");
+    fprintf(stderr, "Usage: run-emitter-test-suite [--directive (1.1|1.2)] 
[--flow (on|off|keep)] [<input-file>]\n");
     return ret;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yaml-0.2.4/tests/run-parser-test-suite.c 
new/yaml-0.2.5/tests/run-parser-test-suite.c
--- old/yaml-0.2.4/tests/run-parser-test-suite.c        2020-04-19 
13:15:46.000000000 +0200
+++ new/yaml-0.2.5/tests/run-parser-test-suite.c        2020-06-01 
23:34:52.000000000 +0200
@@ -4,20 +4,44 @@
 #include <assert.h>
 
 void print_escaped(yaml_char_t * str, size_t length);
+int usage(int ret);
 
 int main(int argc, char *argv[])
 {
     FILE *input;
     yaml_parser_t parser;
     yaml_event_t event;
-
-    if (argc == 1)
+    int flow = -1; /** default no flow style collections */
+    int i = 0;
+    int foundfile = 0;
+
+    for (i = 1; i < argc; i++) {
+        if (strncmp(argv[i], "--flow", 6) == 0) {
+            if (i+1 == argc)
+                return usage(1);
+            i++;
+            if (strncmp(argv[i], "keep", 4) == 0)
+                flow = 0;
+            else if (strncmp(argv[i], "on", 2) == 0)
+                flow = 1;
+            else if (strncmp(argv[i], "off", 3) == 0)
+                flow = -1;
+            else
+                return usage(1);
+        }
+        else if (strncmp(argv[i], "--help", 6) == 0)
+            return usage(0);
+        else if (strncmp(argv[i], "-h", 2) == 0)
+            return usage(0);
+        else if (!foundfile) {
+            input = fopen(argv[i], "rb");
+            foundfile = 1;
+        }
+        else
+            return usage(1);
+    }
+    if (!foundfile) {
         input = stdin;
-    else if (argc == 2)
-        input = fopen(argv[1], "rb");
-    else {
-        fprintf(stderr, "Usage: libyaml-parser [<input-file>]\n");
-        return 1;
     }
     assert(input);
 
@@ -30,7 +54,15 @@
     while (1) {
         yaml_event_type_t type;
         if (!yaml_parser_parse(&parser, &event)) {
-            fprintf(stderr, "Parse error: %s\n", parser.problem);
+            if ( parser.problem_mark.line || parser.problem_mark.column ) {
+                fprintf(stderr, "Parse error: %s\nLine: %lu Column: %lu\n",
+                    parser.problem,
+                    (unsigned long)parser.problem_mark.line + 1,
+                    (unsigned long)parser.problem_mark.column + 1);
+            }
+            else {
+                fprintf(stderr, "Parse error: %s\n", parser.problem);
+            }
             return 1;
         }
         type = event.type;
@@ -55,6 +87,10 @@
         }
         else if (type == YAML_MAPPING_START_EVENT) {
             printf("+MAP");
+            if (flow == 0 && event.data.mapping_start.style == 
YAML_FLOW_MAPPING_STYLE)
+                printf(" {}");
+            else if (flow == 1)
+                printf(" {}");
             if (event.data.mapping_start.anchor)
                 printf(" &%s", event.data.mapping_start.anchor);
             if (event.data.mapping_start.tag)
@@ -65,6 +101,10 @@
             printf("-MAP\n");
         else if (type == YAML_SEQUENCE_START_EVENT) {
             printf("+SEQ");
+            if (flow == 0 && event.data.sequence_start.style == 
YAML_FLOW_SEQUENCE_STYLE)
+                printf(" []");
+            else if (flow == 1)
+                printf(" []");
             if (event.data.sequence_start.anchor)
                 printf(" &%s", event.data.sequence_start.anchor);
             if (event.data.sequence_start.tag)
@@ -142,3 +182,8 @@
             printf("%c", c);
     }
 }
+
+int usage(int ret) {
+    fprintf(stderr, "Usage: libyaml-parser [--flow (on|off|keep)] 
[<input-file>]\n");
+    return ret;
+}


Reply via email to