summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-27 00:10:44 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-27 00:14:32 -0800
commit80cb4d6293e21f1dea2b23f7afcdcc0a250ed4a5 (patch)
treebda2c05e3e08273b550da6cf072c3bd8da3348f6
parent6ef7a24ad42b6d592ae66869b5adb767c5fd3b49 (diff)
pugixml 1.5 is out!
-rw-r--r--_config.yml2
-rw-r--r--_includes/header.html4
-rw-r--r--_posts/2014-11-27-pugixml-1.5-release.md16
3 files changed, 19 insertions, 3 deletions
diff --git a/_config.yml b/_config.yml
index 6d29cb5..ea9a122 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.4
+version: 1.5
diff --git a/_includes/header.html b/_includes/header.html
index f1d6edf..aa44a3f 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -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>398 Kb, Windows line endings</small></li>
+ <small>394 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>365 Kb, Unix line endings</small></li>
</ul>
Documentation:
diff --git a/_posts/2014-11-27-pugixml-1.5-release.md b/_posts/2014-11-27-pugixml-1.5-release.md
new file mode 100644
index 0000000..f558a8a
--- /dev/null
+++ b/_posts/2014-11-27-pugixml-1.5-release.md
@@ -0,0 +1,16 @@
+---
+layout: post
+title: pugixml 1.5 release
+---
+
+pugixml-1.5 is out. This is a major release focused on performance improvements that also has some new features and compatibility improvements (read the [changelog](http://cdn.rawgit.com/zeux/pugixml/v1.5/docs/manual/changes.html) for details).
+
+Highlights for this release include:
+
+* Implemented efficient moving of nodes within the same document
+* Optimized parsing (10-40% faster with clang/GCC, 10% faster with MSVC)
+* Optimized node copying (stackless, shares string contents where possible, up to 3x faster overall)
+* Optimized node output (stackless, up to 60% faster)
+* Optimized XPath evaluation (XPathMark suite is 100x faster; some commonly used queries are 4x faster)
+
+You can [download the source package](http://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.zip) or get the new version from GitHub using the latest tag (http://github.com/zeux/pugixml). \ No newline at end of file