summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-17 21:47:37 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-17 21:47:37 -0800
commitb041e94f29fee9800f02ca6c257fe6cea4eae72a (patch)
tree8a9968ca61e5fa36cedd55a9f50a444b6276b407
parente9956ae3a6593efc6f8cb344a00432ece51d1574 (diff)
Update version to 1.5
-rw-r--r--Jamfile.jam2
-rw-r--r--docs/manual.qbk10
-rw-r--r--docs/quickstart.qbk8
-rw-r--r--readme.txt2
-rw-r--r--scripts/CMakeLists.txt2
-rw-r--r--src/pugiconfig.hpp2
-rw-r--r--src/pugixml.cpp2
-rw-r--r--src/pugixml.hpp4
8 files changed, 16 insertions, 16 deletions
diff --git a/Jamfile.jam b/Jamfile.jam
index d85188d..512e2c9 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -144,7 +144,7 @@ for SAMPLE in [ Glob docs/samples : *.cpp ]
}
# release
-VERSION = 1.4 ;
+VERSION = 1.5 ;
RELEASE_FILES =
[ Glob contrib : *.cpp *.hpp ]
[ Glob src : *.cpp *.hpp ]
diff --git a/docs/manual.qbk b/docs/manual.qbk
index 6d7f4e1..dde8b52 100644
--- a/docs/manual.qbk
+++ b/docs/manual.qbk
@@ -1,7 +1,7 @@
[book pugixml
[quickbook 1.5]
- [version 1.4]
+ [version 1.5]
[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.4/pugixml-1.4.zip]
-[@https://github.com/zeux/pugixml/releases/download/v1.4/pugixml-1.4.tar.gz]
+[@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]
]
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.4
+git checkout v1.5
]
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.4 pugixml]
+[pre svn checkout https://github.com/zeux/pugixml/tags/v1.5 pugixml]
[endsect] [/subversion]
diff --git a/docs/quickstart.qbk b/docs/quickstart.qbk
index c913ccb..1845224 100644
--- a/docs/quickstart.qbk
+++ b/docs/quickstart.qbk
@@ -1,7 +1,7 @@
[article pugixml
[quickbook 1.5]
- [version 1.4]
+ [version 1.5]
[id quickstart]
[copyright 2014 Arseny Kapoulkine]
[license Distributed under the MIT License]
@@ -11,7 +11,7 @@
[template sref[name]'''<xref linkend="quickstart.main.'''[name]'''" xrefstyle="select:title" />''']
[template ftnt[id text]'''<footnote id="'''[id]'''"><para>'''[text]'''</para></footnote>''']
-[section:main pugixml 1.4 quick start guide]
+[section:main pugixml 1.5 quick start guide]
[section:introduction Introduction]
@@ -30,8 +30,8 @@ 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.4/pugixml-1.4.zip]
-[@https://github.com/zeux/pugixml/releases/download/v1.4/pugixml-1.4.tar.gz]
+[@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]
]
The distribution contains library source, documentation (the guide you're reading now and the manual) 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.
diff --git a/readme.txt b/readme.txt
index 5f3e694..54d2a6c 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-pugixml 1.4 - an XML processing library
+pugixml 1.5 - 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 bd33220..daf6b35 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.4 SOVERSION 1)
+set_target_properties(pugixml PROPERTIES VERSION 1.5 SOVERSION 1)
install(TARGETS pugixml EXPORT pugixml-config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp
index 56f1d22..1c216e3 100644
--- a/src/pugiconfig.hpp
+++ b/src/pugiconfig.hpp
@@ -1,5 +1,5 @@
/**
- * pugixml parser - version 1.4
+ * pugixml parser - version 1.5
* --------------------------------------------------------
* 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 852ccb9..3f6b2fd 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -1,6 +1,6 @@
/**
{
- * pugixml parser - version 1.4
+ * pugixml parser - version 1.5
* --------------------------------------------------------
* 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 7f52975..917ef4a 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -1,5 +1,5 @@
/**
- * pugixml parser - version 1.4
+ * pugixml parser - version 1.5
* --------------------------------------------------------
* 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 140
+# define PUGIXML_VERSION 150
#endif
// Include user configuration file (this can define various configuration macros)