summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-04-03 05:04:07 +0000
committerarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-04-03 05:04:07 +0000
commitbda8e935e9d70e844f2b8921fc09a0c795ccf74f (patch)
treebdc24c41f27f015cf57978e46c5f78ad34e334b9
parent7d18b332924653453c75ddea580fd5332577c78b (diff)
Updated version number and copyright year everywhere
git-svn-id: http://pugixml.googlecode.com/svn/trunk@897 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r--Jamfile.jam2
-rw-r--r--docs/manual.qbk10
-rw-r--r--docs/quickstart.qbk10
-rw-r--r--readme.txt6
-rw-r--r--scripts/CMakeLists.txt2
-rw-r--r--src/pugiconfig.hpp6
-rw-r--r--src/pugixml.cpp6
-rw-r--r--src/pugixml.hpp8
-rw-r--r--tests/test_version.cpp2
9 files changed, 26 insertions, 26 deletions
diff --git a/Jamfile.jam b/Jamfile.jam
index 6d329fb..59784b5 100644
--- a/Jamfile.jam
+++ b/Jamfile.jam
@@ -144,7 +144,7 @@ for SAMPLE in [ Glob docs/samples : *.cpp ]
}
# release
-VERSION = 1.0 ;
+VERSION = 1.2 ;
RELEASE_FILES =
[ Glob contrib : *.cpp *.hpp ]
[ Glob src : *.cpp *.hpp ]
diff --git a/docs/manual.qbk b/docs/manual.qbk
index 7388382..1fa62c1 100644
--- a/docs/manual.qbk
+++ b/docs/manual.qbk
@@ -1,9 +1,9 @@
[book pugixml
[quickbook 1.5]
- [version 1.0]
+ [version 1.2]
[id manual]
- [copyright 2010 Arseny Kapoulkine]
+ [copyright 2012 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
-[@http://pugixml.googlecode.com/files/pugixml-1.0.zip]
-[@http://pugixml.googlecode.com/files/pugixml-1.0.tar.gz]
+[@http://pugixml.googlecode.com/files/pugixml-1.2.zip]
+[@http://pugixml.googlecode.com/files/pugixml-1.2.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.
@@ -122,7 +122,7 @@ The Subversion repository is located at [@http://pugixml.googlecode.com/svn/]. T
For example, to checkout the current version, you can use this command:
-[pre svn checkout http://pugixml.googlecode.com/svn/tags/release-1.0 pugixml]
+[pre svn checkout http://pugixml.googlecode.com/svn/tags/release-1.2 pugixml]
To checkout the latest version, you can use this command:
diff --git a/docs/quickstart.qbk b/docs/quickstart.qbk
index 340cdb7..93790dc 100644
--- a/docs/quickstart.qbk
+++ b/docs/quickstart.qbk
@@ -1,9 +1,9 @@
[article pugixml
[quickbook 1.5]
- [version 1.0]
+ [version 1.2]
[id quickstart]
- [copyright 2010 Arseny Kapoulkine]
+ [copyright 2012 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.0 quick start guide]
+[section:main pugixml 1.2 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
-[@http://pugixml.googlecode.com/files/pugixml-1.0.zip]
-[@http://pugixml.googlecode.com/files/pugixml-1.0.tar.gz]
+[@http://pugixml.googlecode.com/files/pugixml-1.2.zip]
+[@http://pugixml.googlecode.com/files/pugixml-1.2.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 9bf4d5f..aa3353d 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,6 +1,6 @@
-pugixml 1.0 - an XML processing library
+pugixml 1.2 - an XML processing library
-Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+Copyright (C) 2006-2012, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
Report bugs and download new versions at http://pugixml.org/
This is the distribution of pugixml, which is a C++ XML processing library,
@@ -28,7 +28,7 @@ The distribution contains the following folders:
This library is distributed under the MIT License:
-Copyright (c) 2006-2010 Arseny Kapoulkine
+Copyright (c) 2006-2012 Arseny Kapoulkine
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt
index b34ec2d..454a9ea 100644
--- a/scripts/CMakeLists.txt
+++ b/scripts/CMakeLists.txt
@@ -11,7 +11,7 @@ else()
add_library(pugixml STATIC ${SOURCES})
endif()
-set_target_properties(pugixml PROPERTIES VERSION 1.0 SOVERSION 1.0)
+set_target_properties(pugixml PROPERTIES VERSION 1.2 SOVERSION 1.2)
install(TARGETS pugixml LIBRARY DESTINATION lib ARCHIVE DESTINATION lib)
install(DIRECTORY ../src/ DESTINATION include/pugixml FILES_MATCHING PATTERN *.hpp)
diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp
index 465fd21..c219671 100644
--- a/src/pugiconfig.hpp
+++ b/src/pugiconfig.hpp
@@ -1,7 +1,7 @@
/**
- * pugixml parser - version 1.0
+ * pugixml parser - version 1.2
* --------------------------------------------------------
- * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2012, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
@@ -44,7 +44,7 @@
#endif
/**
- * Copyright (c) 2006-2010 Arseny Kapoulkine
+ * Copyright (c) 2006-2012 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 9530a4d..a0f8cc6 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -1,7 +1,7 @@
/**
- * pugixml parser - version 1.0
+ * pugixml parser - version 1.2
* --------------------------------------------------------
- * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2012, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
@@ -10227,7 +10227,7 @@ namespace pugi
#endif
/**
- * Copyright (c) 2006-2010 Arseny Kapoulkine
+ * Copyright (c) 2006-2012 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 24c2ded..51e456f 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -1,7 +1,7 @@
/**
- * pugixml parser - version 1.0
+ * pugixml parser - version 1.2
* --------------------------------------------------------
- * Copyright (C) 2006-2010, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
+ * Copyright (C) 2006-2012, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/
*
* This library is distributed under the MIT License. See notice at the end
@@ -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 100
+# define PUGIXML_VERSION 120
#endif
// Include user configuration file (this can define various configuration macros)
@@ -1239,7 +1239,7 @@ namespace std
#endif
/**
- * Copyright (c) 2006-2010 Arseny Kapoulkine
+ * Copyright (c) 2006-2012 Arseny Kapoulkine
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
diff --git a/tests/test_version.cpp b/tests/test_version.cpp
index e33695e..6fbfe1b 100644
--- a/tests/test_version.cpp
+++ b/tests/test_version.cpp
@@ -1,5 +1,5 @@
#include "../src/pugixml.hpp"
-#if PUGIXML_VERSION != 100
+#if PUGIXML_VERSION != 120
#error Unexpected pugixml version
#endif