From 36f9e8ec7b01266e43c9bb665c97dc3b17c8c219 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 2 Nov 2022 07:54:04 -0700 Subject: [PATCH] Add release news and bump config version --- _config.yml | 2 +- _posts/2022-11-02-pugixml-1.13-release.md | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 _posts/2022-11-02-pugixml-1.13-release.md diff --git a/_config.yml b/_config.yml index d7fb6ef..198c0ba 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: https://pugixml.org/ -version: "1.12" +version: "1.13" gems: - jekyll-redirect-from diff --git a/_posts/2022-11-02-pugixml-1.13-release.md b/_posts/2022-11-02-pugixml-1.13-release.md new file mode 100644 index 0000000..866f9f6 --- /dev/null +++ b/_posts/2022-11-02-pugixml-1.13-release.md @@ -0,0 +1,14 @@ +--- +layout: post +title: pugixml 1.13 release +--- + +pugixml-1.13 is out. This is a maintenance release that fixes several issues (read the [changelog](/docs/manual.html#v1.13) for details). + +Highlights for this release include: + +- xml_attribute::set_value, xml_node::set_value and xml_text::set now have overloads that accept pointer to non-null-terminated string and size +- Fix error handling in xml_document::save_file that could result in the function succeeding while running out of disk space +- Fix memory leak during error handling of some out-of-memory conditions during xml_document::load + +You can [download the source package](https://github.com/zeux/pugixml/releases/download/v1.13/pugixml-1.13.zip) or get the new version from GitHub using the latest tag (https://github.com/zeux/pugixml).