mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-13 17:37:58 +08:00
Update version to 1.7
This commit is contained in:
parent
99599f73e4
commit
0cfdba262e
@ -1,4 +1,4 @@
|
|||||||
pugixml 1.6 - an XML processing library
|
pugixml 1.7 - an XML processing library
|
||||||
|
|
||||||
Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
Copyright (C) 2006-2015, 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/
|
||||||
|
@ -30,7 +30,7 @@ if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1)
|
|||||||
target_compile_features(pugixml PUBLIC cxx_long_long_type)
|
target_compile_features(pugixml PUBLIC cxx_long_long_type)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set_target_properties(pugixml PROPERTIES VERSION 1.6 SOVERSION 1)
|
set_target_properties(pugixml PROPERTIES VERSION 1.7 SOVERSION 1)
|
||||||
|
|
||||||
install(TARGETS pugixml EXPORT pugixml-config
|
install(TARGETS pugixml EXPORT pugixml-config
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
nuget {
|
nuget {
|
||||||
nuspec {
|
nuspec {
|
||||||
id = pugixml;
|
id = pugixml;
|
||||||
version: 1.7.0-alpha;
|
version: 1.7;
|
||||||
title: pugixml;
|
title: pugixml;
|
||||||
authors: {Arseny Kapoulkine};
|
authors: {Arseny Kapoulkine};
|
||||||
owners: {Arseny Kapoulkine};
|
owners: {Arseny Kapoulkine};
|
||||||
@ -13,7 +13,9 @@ nuget {
|
|||||||
|
|
||||||
description: @"pugixml is a C++ XML processing library, which consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with Unicode interface variants and conversions between different Unicode encodings (which happen automatically during parsing/saving).
|
description: @"pugixml is a C++ XML processing library, which consists of a DOM-like interface with rich traversal/modification capabilities, an extremely fast XML parser which constructs the DOM tree from an XML file/buffer, and an XPath 1.0 implementation for complex data-driven tree queries. Full Unicode support is also available, with Unicode interface variants and conversions between different Unicode encodings (which happen automatically during parsing/saving).
|
||||||
pugixml is used by a lot of projects, both open-source and proprietary, for performance and easy-to-use interface.";
|
pugixml is used by a lot of projects, both open-source and proprietary, for performance and easy-to-use interface.";
|
||||||
|
|
||||||
releaseNotes: "Initial release";
|
releaseNotes: "Initial release";
|
||||||
|
|
||||||
copyright: Copyright (c) 2006-2015 Arseny Kapoulkine;
|
copyright: Copyright (c) 2006-2015 Arseny Kapoulkine;
|
||||||
tags: { native };
|
tags: { native };
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.6
|
* pugixml parser - version 1.7
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2015, 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/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.6
|
* pugixml parser - version 1.7
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2015, 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/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.6
|
* pugixml parser - version 1.7
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2015, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2015, 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 160
|
# define PUGIXML_VERSION 170
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Include user configuration file (this can define various configuration macros)
|
// Include user configuration file (this can define various configuration macros)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user