diff options
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | _includes/header.html | 8 | ||||
-rw-r--r-- | _posts/2015-04-10-pugixml-1.6-release.md | 14 | ||||
-rw-r--r-- | docs/manual.adoc | 2 | ||||
-rw-r--r-- | docs/manual.html | 8 |
5 files changed, 24 insertions, 10 deletions
diff --git a/_config.yml b/_config.yml index 38ad872..301762c 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ name: pugixml.org description: Light-weight, simple and fast XML parser for C++ with XPath support url: http://pugixml.org/ -version: 1.5
\ No newline at end of file +version: 1.6
\ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html index aa44a3f..57b66d5 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -28,16 +28,16 @@ Downloads: <ul> <li><a href="http://github.com/zeux/pugixml/releases/download/v{{site.version}}/pugixml-{{site.version}}.zip" onclick="trackLink('download', 'pugixml-{{site.version}}.zip')">pugixml-{{site.version}}.zip</a><br/> - <small>394 Kb, Windows line endings</small></li> + <small>357 Kb, Windows line endings</small></li> <li><a href="http://github.com/zeux/pugixml/releases/download/v{{site.version}}/pugixml-{{site.version}}.tar.gz" onclick="trackLink('download', 'pugixml-{{site.version}}.tar.gz')">pugixml-{{site.version}}.tar.gz</a><br/> - <small>365 Kb, Unix line endings</small></li> + <small>338 Kb, Unix line endings</small></li> </ul> Documentation: <ul> - <li><a href="http://cdn.rawgit.com/zeux/pugixml/v{{site.version}}/docs/quickstart.html" onclick="trackLink('documentation', 'quickstart')">Quick-start guide</a><br/> + <li><a href="/docs/quickstart.html" onclick="trackLink('documentation', 'quickstart')">Quick-start guide</a><br/> <small>Read this to start using the library</small></li> - <li><a href="http://cdn.rawgit.com/zeux/pugixml/v{{site.version}}/docs/manual.html" onclick="trackLink('documentation', 'manual')">Complete reference manual</a><br/> + <li><a href="/docs/manual.html" onclick="trackLink('documentation', 'manual')">Complete reference manual</a><br/> <small>Read this for full library reference</small></li> <li><a href="/benchmark.html">Benchmarks</a></li> <li><a href="/license.html">License</a></li> diff --git a/_posts/2015-04-10-pugixml-1.6-release.md b/_posts/2015-04-10-pugixml-1.6-release.md new file mode 100644 index 0000000..8fde3f0 --- /dev/null +++ b/_posts/2015-04-10-pugixml-1.6-release.md @@ -0,0 +1,14 @@ +--- +layout: post +title: pugixml 1.6 release +--- + +pugixml-1.5 is out. This is a maintenance release that fixes several bugs (read the [changelog](/manual.html#1.6) for details). + +Highlights for this release include: + +* Fixed translate and normalize-space XPath functions to no longer return internal NUL characters +* Fixed buffer overrun on malformed comments inside DOCTYPE sections +* Attribute/text values now use more digits when printing floating point numbers to guarantee round-tripping. + +You can [download the source package](http://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.zip) or get the new version from GitHub using the latest tag (http://github.com/zeux/pugixml).
\ No newline at end of file diff --git a/docs/manual.adoc b/docs/manual.adoc index de78eec..bab2f80 100644 --- a/docs/manual.adoc +++ b/docs/manual.adoc @@ -2098,7 +2098,7 @@ Because of the differences in document object models, performance considerations :!numbered: [[v1.6]] -=== v1.6 ^15.04.2015^ +=== v1.6 ^10.04.2015^ Maintenance release. Changes: diff --git a/docs/manual.html b/docs/manual.html index a0fd721..8b23adc 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -572,7 +572,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b </li> <li><a href="#changes">9. Changelog</a> <ul class="sectlevel2"> -<li><a href="#v1.6">v1.6 <sup>15.04.2015</sup></a></li> +<li><a href="#v1.6">v1.6 <sup>10.04.2015</sup></a></li> <li><a href="#v1.5">v1.5 <sup>27.11.2014</sup></a></li> <li><a href="#v1.4">v1.4 <sup>27.02.2014</sup></a></li> <li><a href="#v1.2">v1.2 <sup>1.05.2012</sup></a></li> @@ -4001,7 +4001,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in <h2 id="changes"><a class="anchor" href="#changes"></a>9. Changelog</h2> <div class="sectionbody"> <div class="sect2"> -<h3 id="v1.6"><a class="anchor" href="#v1.6"></a>v1.6 <sup>15.04.2015</sup></h3> +<h3 id="v1.6"><a class="anchor" href="#v1.6"></a>v1.6 <sup>10.04.2015</sup></h3> <div class="paragraph"> <p>Maintenance release. Changes:</p> </div> @@ -5509,8 +5509,8 @@ If exceptions are disabled, then in the event of parsing failure the query is in </div> <div id="footer"> <div id="footer-text"> -Last updated 2015-03-24 20:19:09 PDT +Last updated 2015-04-10 20:49:27 PDT </div> </div> </body> -</html>
\ No newline at end of file +</html> |