Update version to 1.12
This commit is contained in:
parent
9ba92a7fa7
commit
c9e219c17b
@ -1,5 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.4)
|
cmake_minimum_required(VERSION 3.4)
|
||||||
project(pugixml VERSION 1.11 LANGUAGES CXX)
|
project(pugixml VERSION 1.12 LANGUAGES CXX)
|
||||||
|
|
||||||
include(CMakePackageConfigHelpers)
|
include(CMakePackageConfigHelpers)
|
||||||
include(CMakeDependentOption)
|
include(CMakeDependentOption)
|
||||||
@ -33,7 +33,7 @@ option(BUILD_SHARED_LIBS "Build shared instead of static library" OFF)
|
|||||||
cmake_dependent_option(PUGIXML_BUILD_SHARED_AND_STATIC_LIBS
|
cmake_dependent_option(PUGIXML_BUILD_SHARED_AND_STATIC_LIBS
|
||||||
"Build both shared and static libraries" OFF
|
"Build both shared and static libraries" OFF
|
||||||
"BUILD_SHARED_LIBS" OFF)
|
"BUILD_SHARED_LIBS" OFF)
|
||||||
|
|
||||||
# Expose options from the pugiconfig.hpp
|
# Expose options from the pugiconfig.hpp
|
||||||
option(PUGIXML_WCHAR_MODE "Enable wchar_t mode" OFF)
|
option(PUGIXML_WCHAR_MODE "Enable wchar_t mode" OFF)
|
||||||
option(PUGIXML_COMPACT "Enable compact mode" OFF)
|
option(PUGIXML_COMPACT "Enable compact mode" OFF)
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
pugixml 1.11 - an XML processing library
|
pugixml 1.12 - an XML processing library
|
||||||
|
|
||||||
Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
Report bugs and download new versions at https://pugixml.org/
|
Report bugs and download new versions at https://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.11.0-appveyor</version>
|
<version>1.12.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.11"
|
s.version = "1.12"
|
||||||
s.summary = "C++ XML parser library."
|
s.summary = "C++ XML parser library."
|
||||||
s.homepage = "https://pugixml.org"
|
s.homepage = "https://pugixml.org"
|
||||||
s.license = "MIT"
|
s.license = "MIT"
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
#include <winver.h>
|
#include <winver.h>
|
||||||
|
|
||||||
#define PUGIXML_VERSION_MAJOR 1
|
#define PUGIXML_VERSION_MAJOR 1
|
||||||
#define PUGIXML_VERSION_MINOR 11
|
#define PUGIXML_VERSION_MINOR 12
|
||||||
#define PUGIXML_VERSION_PATCH 0
|
#define PUGIXML_VERSION_PATCH 0
|
||||||
#define PUGIXML_VERSION_NUMBER "1.11.0\0"
|
#define PUGIXML_VERSION_NUMBER "1.12.0\0"
|
||||||
|
|
||||||
#if defined(GCC_WINDRES) || defined(__MINGW32__) || defined(__CYGWIN__)
|
#if defined(GCC_WINDRES) || defined(__MINGW32__) || defined(__CYGWIN__)
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.11
|
* pugixml parser - version 1.12
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
* Report bugs and download new versions at https://pugixml.org/
|
* Report bugs and download new versions at https://pugixml.org/
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.11
|
* pugixml parser - version 1.12
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
* Report bugs and download new versions at https://pugixml.org/
|
* Report bugs and download new versions at https://pugixml.org/
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* pugixml parser - version 1.11
|
* pugixml parser - version 1.12
|
||||||
* --------------------------------------------------------
|
* --------------------------------------------------------
|
||||||
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
* Copyright (C) 2006-2020, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
|
||||||
* Report bugs and download new versions at https://pugixml.org/
|
* Report bugs and download new versions at https://pugixml.org/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user