From 0cfdba262e389b347cb574c686394c104ece4628 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sat, 10 Oct 2015 12:34:35 -0700 Subject: Update version to 1.7 --- readme.txt | 2 +- scripts/CMakeLists.txt | 2 +- scripts/nuget.autopkg | 4 +++- src/pugiconfig.hpp | 2 +- src/pugixml.cpp | 2 +- src/pugixml.hpp | 4 ++-- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/readme.txt b/readme.txt index faa41d3..9d3833c 100644 --- a/readme.txt +++ b/readme.txt @@ -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) Report bugs and download new versions at http://pugixml.org/ diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index cf9577e..40a7ab0 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -30,7 +30,7 @@ if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1) target_compile_features(pugixml PUBLIC cxx_long_long_type) 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 ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} diff --git a/scripts/nuget.autopkg b/scripts/nuget.autopkg index 36747e9..9f79eeb 100644 --- a/scripts/nuget.autopkg +++ b/scripts/nuget.autopkg @@ -1,7 +1,7 @@ nuget { nuspec { id = pugixml; - version: 1.7.0-alpha; + version: 1.7; title: pugixml; authors: {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). pugixml is used by a lot of projects, both open-source and proprietary, for performance and easy-to-use interface."; + releaseNotes: "Initial release"; + copyright: Copyright (c) 2006-2015 Arseny Kapoulkine; tags: { native }; } diff --git a/src/pugiconfig.hpp b/src/pugiconfig.hpp index 6edf64c..e50b580 100644 --- a/src/pugiconfig.hpp +++ b/src/pugiconfig.hpp @@ -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) * Report bugs and download new versions at http://pugixml.org/ diff --git a/src/pugixml.cpp b/src/pugixml.cpp index d40840e..ddaf27f 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -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) * Report bugs and download new versions at http://pugixml.org/ diff --git a/src/pugixml.hpp b/src/pugixml.hpp index f70252e..9f7c3fb 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -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) * 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 160 +# define PUGIXML_VERSION 170 #endif // Include user configuration file (this can define various configuration macros) -- cgit v1.2.3