Updated version number and copyright year everywhere
git-svn-id: http://pugixml.googlecode.com/svn/trunk@897 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
7d18b33292
commit
bda8e935e9
@ -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 ]
|
||||
|
||||
@ -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:
|
||||
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#include "../src/pugixml.hpp"
|
||||
|
||||
#if PUGIXML_VERSION != 100
|
||||
#if PUGIXML_VERSION != 120
|
||||
#error Unexpected pugixml version
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user