Release 1.6
This commit is contained in:
parent
a2dd7b1697
commit
b1cc09af3f
@ -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
|
||||
version: 1.6
|
||||
@ -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>
|
||||
|
||||
14
_posts/2015-04-10-pugixml-1.6-release.md
Normal file
14
_posts/2015-04-10-pugixml-1.6-release.md
Normal file
@ -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).
|
||||
@ -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:
|
||||
|
||||
|
||||
@ -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>
|
||||
</html>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user