From e68048518ea4830ffcdaf79e7f929713263c6f06 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 18 Mar 2015 21:19:58 -0700 Subject: Update version to 1.6 --- Jamfile.jam | 2 +- docs/manual.qbk | 18 +++++++++++++----- docs/quickstart.qbk | 6 +++--- readme.txt | 2 +- scripts/CMakeLists.txt | 2 +- src/pugiconfig.hpp | 2 +- src/pugixml.cpp | 2 +- src/pugixml.hpp | 4 ++-- tests/test_version.cpp | 2 +- 9 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Jamfile.jam b/Jamfile.jam index 512e2c9..bf1ffcf 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -144,7 +144,7 @@ for SAMPLE in [ Glob docs/samples : *.cpp ] } # release -VERSION = 1.5 ; +VERSION = 1.6 ; RELEASE_FILES = [ Glob contrib : *.cpp *.hpp ] [ Glob src : *.cpp *.hpp ] diff --git a/docs/manual.qbk b/docs/manual.qbk index fec889a..d70400e 100644 --- a/docs/manual.qbk +++ b/docs/manual.qbk @@ -1,7 +1,7 @@ [book pugixml [quickbook 1.5] - [version 1.5] + [version 1.6] [id manual] [copyright 2014 Arseny Kapoulkine] [license Distributed under the MIT License] @@ -106,8 +106,8 @@ pugixml is distributed in source form. You can either download a source distribu You can download the latest source distribution via one of the following links: [pre -[@https://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.zip] -[@https://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.tar.gz] +[@https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.zip] +[@https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.6.tar.gz] ] The distribution contains library source, documentation (the manual you're reading now and the quick start guide) and some code examples. After downloading the distribution, install pugixml by extracting all files from the compressed archive. The files have different line endings depending on the archive format - [file .zip] archive has Windows line endings, [file .tar.gz] archive has Unix line endings. Otherwise the files in both archives are identical. @@ -125,7 +125,7 @@ For example, to checkout the current version, you can use this command: [pre git clone https://github.com/zeux/pugixml cd pugixml -git checkout v1.5 +git checkout v1.6 ] The repository contains library source, documentation, code examples and full unit test suite. @@ -138,7 +138,7 @@ Use latest version tag if you want to automatically get new versions. Use other You can access the Git repository via Subversion using [@https://github.com/zeux/pugixml] URL. For example, to checkout the current version, you can use this command: -[pre svn checkout https://github.com/zeux/pugixml/tags/v1.5 pugixml] +[pre svn checkout https://github.com/zeux/pugixml/tags/v1.6 pugixml] [endsect] [/subversion] @@ -1896,6 +1896,14 @@ Because of the differences in document object models, performance considerations [section:changes Changelog] +[h5 15.04.2015 - version 1.6] + +Maintenance release. Changes: + +* Specification changes: + +* Bug fixes: + [h5 27.11.2014 - version 1.5] Major release, featuring a lot of performance improvements and some new features. diff --git a/docs/quickstart.qbk b/docs/quickstart.qbk index b609518..5d7f5a9 100644 --- a/docs/quickstart.qbk +++ b/docs/quickstart.qbk @@ -1,7 +1,7 @@ [article pugixml [quickbook 1.5] - [version 1.5] + [version 1.6] [id quickstart] [copyright 2014 Arseny Kapoulkine] [license Distributed under the MIT License] @@ -11,7 +11,7 @@ [template sref[name]''''''] [template ftnt[id text]''''''[text]''''''] -[section:main pugixml 1.5 quick start guide] +[section:main pugixml 1.6 quick start guide] [section:introduction Introduction] @@ -30,7 +30,7 @@ This is the quick start guide for pugixml, which purpose is to enable you to sta pugixml is distributed in source form. You can download a source distribution via one of the following links: [pre -[@https://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.zip] +[@https://github.com/zeux/pugixml/releases/download/v1.6/pugixml-1.5.zip] [@https://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.tar.gz] ] diff --git a/readme.txt b/readme.txt index 54d2a6c..2cc587f 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -pugixml 1.5 - an XML processing library +pugixml 1.6 - an XML processing library Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) Report bugs and download new versions at http://pugixml.org/ diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index daf6b35..6270ae5 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -22,7 +22,7 @@ else() add_library(pugixml STATIC ${SOURCES}) endif() -set_target_properties(pugixml PROPERTIES VERSION 1.5 SOVERSION 1) +set_target_properties(pugixml PROPERTIES VERSION 1.6 SOVERSION 1) install(TARGETS pugixml EXPORT pugixml-config ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp index 6219dbe..f6f42f6 100644 --- a/src/pugiconfig.hpp +++ b/src/pugiconfig.hpp @@ -1,5 +1,5 @@ /** - * pugixml parser - version 1.5 + * pugixml parser - version 1.6 * -------------------------------------------------------- * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) * Report bugs and download new versions at http://pugixml.org/ diff --git a/src/pugixml.cpp b/src/pugixml.cpp index ac90c5f..9961396 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -1,5 +1,5 @@ /** - * pugixml parser - version 1.5 + * pugixml parser - version 1.6 * -------------------------------------------------------- * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) * Report bugs and download new versions at http://pugixml.org/ diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 9798b46..8c84399 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1,5 +1,5 @@ /** - * pugixml parser - version 1.5 + * pugixml parser - version 1.6 * -------------------------------------------------------- * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com) * Report bugs and download new versions at http://pugixml.org/ @@ -13,7 +13,7 @@ #ifndef PUGIXML_VERSION // Define version macro; evaluates to major * 100 + minor so that it's safe to use in less-than comparisons -# define PUGIXML_VERSION 150 +# define PUGIXML_VERSION 160 #endif // Include user configuration file (this can define various configuration macros) diff --git a/tests/test_version.cpp b/tests/test_version.cpp index 24036fc..cf64efc 100644 --- a/tests/test_version.cpp +++ b/tests/test_version.cpp @@ -1,5 +1,5 @@ #include "../src/pugixml.hpp" -#if PUGIXML_VERSION != 150 +#if PUGIXML_VERSION != 160 #error Unexpected pugixml version #endif -- cgit v1.2.3