0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-27 13:33:17 +08:00

Update version to 1.6

This commit is contained in:
Arseny Kapoulkine 2015-03-18 21:19:58 -07:00
parent 5f996eba6d
commit e68048518e
9 changed files with 24 additions and 16 deletions

View File

@ -144,7 +144,7 @@ for SAMPLE in [ Glob docs/samples : *.cpp ]
} }
# release # release
VERSION = 1.5 ; VERSION = 1.6 ;
RELEASE_FILES = RELEASE_FILES =
[ Glob contrib : *.cpp *.hpp ] [ Glob contrib : *.cpp *.hpp ]
[ Glob src : *.cpp *.hpp ] [ Glob src : *.cpp *.hpp ]

View File

@ -1,7 +1,7 @@
[book pugixml [book pugixml
[quickbook 1.5] [quickbook 1.5]
[version 1.5] [version 1.6]
[id manual] [id manual]
[copyright 2014 Arseny Kapoulkine] [copyright 2014 Arseny Kapoulkine]
[license Distributed under the MIT License] [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: You can download the latest source distribution via one of the following links:
[pre [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.6.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.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. 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 [pre
git clone https://github.com/zeux/pugixml git clone https://github.com/zeux/pugixml
cd pugixml cd pugixml
git checkout v1.5 git checkout v1.6
] ]
The repository contains library source, documentation, code examples and full unit test suite. 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: 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] [endsect] [/subversion]
@ -1896,6 +1896,14 @@ Because of the differences in document object models, performance considerations
[section:changes Changelog] [section:changes Changelog]
[h5 15.04.2015 - version 1.6]
Maintenance release. Changes:
* Specification changes:
* Bug fixes:
[h5 27.11.2014 - version 1.5] [h5 27.11.2014 - version 1.5]
Major release, featuring a lot of performance improvements and some new features. Major release, featuring a lot of performance improvements and some new features.

View File

@ -1,7 +1,7 @@
[article pugixml [article pugixml
[quickbook 1.5] [quickbook 1.5]
[version 1.5] [version 1.6]
[id quickstart] [id quickstart]
[copyright 2014 Arseny Kapoulkine] [copyright 2014 Arseny Kapoulkine]
[license Distributed under the MIT License] [license Distributed under the MIT License]
@ -11,7 +11,7 @@
[template sref[name]'''<xref linkend="quickstart.main.'''[name]'''" xrefstyle="select:title" />'''] [template sref[name]'''<xref linkend="quickstart.main.'''[name]'''" xrefstyle="select:title" />''']
[template ftnt[id text]'''<footnote id="'''[id]'''"><para>'''[text]'''</para></footnote>'''] [template ftnt[id text]'''<footnote id="'''[id]'''"><para>'''[text]'''</para></footnote>''']
[section:main pugixml 1.5 quick start guide] [section:main pugixml 1.6 quick start guide]
[section:introduction Introduction] [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: pugixml is distributed in source form. You can download a source distribution via one of the following links:
[pre [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] [@https://github.com/zeux/pugixml/releases/download/v1.5/pugixml-1.5.tar.gz]
] ]

View File

@ -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) Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
Report bugs and download new versions at http://pugixml.org/ Report bugs and download new versions at http://pugixml.org/

View File

@ -22,7 +22,7 @@ else()
add_library(pugixml STATIC ${SOURCES}) add_library(pugixml STATIC ${SOURCES})
endif() 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 install(TARGETS pugixml EXPORT pugixml-config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}

View File

@ -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) * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/ * Report bugs and download new versions at http://pugixml.org/

View File

@ -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) * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/ * Report bugs and download new versions at http://pugixml.org/

View File

@ -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) * Copyright (C) 2006-2014, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/ * Report bugs and download new versions at http://pugixml.org/
@ -13,7 +13,7 @@
#ifndef PUGIXML_VERSION #ifndef PUGIXML_VERSION
// Define version macro; evaluates to major * 100 + minor so that it's safe to use in less-than comparisons // 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 #endif
// Include user configuration file (this can define various configuration macros) // Include user configuration file (this can define various configuration macros)

View File

@ -1,5 +1,5 @@
#include "../src/pugixml.hpp" #include "../src/pugixml.hpp"
#if PUGIXML_VERSION != 150 #if PUGIXML_VERSION != 160
#error Unexpected pugixml version #error Unexpected pugixml version
#endif #endif