Release 1.11

This commit is contained in:
Arseny Kapoulkine 2020-11-26 09:54:18 -08:00
parent d9ad7a8b05
commit c3644e22ec
3 changed files with 18 additions and 4 deletions

View File

@ -1,7 +1,7 @@
name: pugixml.org
description: Light-weight, simple and fast XML parser for C++ with XPath support
url: http://pugixml.org/
version: "1.10"
url: https://pugixml.org/
version: "1.11"
gems:
- jekyll-redirect-from

View File

@ -28,9 +28,9 @@
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>397 KB, Windows line endings</small></li>
<small>409 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>369 KB, Unix line endings</small></li>
<small>377 KB, Unix line endings</small></li>
</ul>
Documentation:

View File

@ -0,0 +1,14 @@
---
layout: post
title: pugixml 1.11 release
---
pugixml-1.11 is out. This is a maintenance release that fixes some compatibility issues and introduces several new APIs (read the [changelog](/docs/manual.html#v1.11) for details).
Highlights for this release include:
* Add xml_node::remove_attributes and xml_node::remove_children
* Add a way to customize floating point precision via xml_attribute::set and xml_text::set overloads
* XPath parser now limits recursion depth which prevents stack overflow on malicious queries
You can [download the source package](https://github.com/zeux/pugixml/releases/download/v1.11/pugixml-1.11.zip) or get the new version from GitHub using the latest tag (https://github.com/zeux/pugixml).