mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-14 01:47:55 +08:00
Update version to 1.9
This commit is contained in:
parent
a32585286a
commit
0c74e117b8
@ -52,7 +52,7 @@ if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1 AND ";${CMAKE_C
|
|||||||
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.8 SOVERSION 1)
|
set_target_properties(pugixml PROPERTIES VERSION 1.9 SOVERSION 1)
|
||||||
get_target_property(PUGIXML_VERSION_STRING pugixml VERSION)
|
get_target_property(PUGIXML_VERSION_STRING pugixml VERSION)
|
||||||
|
|
||||||
if(BUILD_PKGCONFIG)
|
if(BUILD_PKGCONFIG)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
pugixml 1.8 - an XML processing library
|
pugixml 1.9 - an XML processing library
|
||||||
|
|
||||||
Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
Copyright (C) 2006-2018, 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/
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>pugixml</id>
|
<id>pugixml</id>
|
||||||
<version>1.8.0-appveyor</version>
|
<version>1.9.0-appveyor</version>
|
||||||
<title>pugixml</title>
|
<title>pugixml</title>
|
||||||
<authors>Arseny Kapoulkine</authors>
|
<authors>Arseny Kapoulkine</authors>
|
||||||
<owners>Arseny Kapoulkine</owners>
|
<owners>Arseny Kapoulkine</owners>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = "pugixml"
|
s.name = "pugixml"
|
||||||
s.version = "1.8"
|
s.version = "1.9"
|
||||||
s.summary = "C++ XML parser library."
|
s.summary = "C++ XML parser library."
|
||||||
s.homepage = "http://pugixml.org"
|
s.homepage = "http://pugixml.org"
|
||||||
s.license = { :type => 'MIT', :text => <<-qwertyuiop
|
s.license = { :type => 'MIT', :text => <<-qwertyuiop
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.8
|
* pugixml parser - version 1.9
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2018, 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.8
|
* pugixml parser - version 1.9
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2018, 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.8
|
* pugixml parser - version 1.9
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2018, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2018, 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 180
|
# define PUGIXML_VERSION 190
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Include user configuration file (this can define various configuration macros)
|
// Include user configuration file (this can define various configuration macros)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "../src/pugixml.hpp"
|
#include "../src/pugixml.hpp"
|
||||||
|
|
||||||
#if PUGIXML_VERSION != 180
|
#if PUGIXML_VERSION != 190
|
||||||
#error Unexpected pugixml version
|
#error Unexpected pugixml version
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user