From c3644e22ec02b820bbe3f6e13a673855abef33a1 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 26 Nov 2020 09:54:18 -0800 Subject: [PATCH] Release 1.11 --- _config.yml | 4 ++-- _includes/header.html | 4 ++-- _posts/2020-11-26-pugixml-1.11-release.md | 14 ++++++++++++++ 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 _posts/2020-11-26-pugixml-1.11-release.md diff --git a/_config.yml b/_config.yml index dd40d53..3ed4508 100644 --- a/_config.yml +++ b/_config.yml @@ -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 diff --git a/_includes/header.html b/_includes/header.html index eeb9e99..1657ce0 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -28,9 +28,9 @@ Downloads: Documentation: diff --git a/_posts/2020-11-26-pugixml-1.11-release.md b/_posts/2020-11-26-pugixml-1.11-release.md new file mode 100644 index 0000000..6c2a4aa --- /dev/null +++ b/_posts/2020-11-26-pugixml-1.11-release.md @@ -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).