Update version to 1.8 everywhere

This commit is contained in:
Arseny Kapoulkine 2016-11-09 09:00:03 -08:00
parent 57ef4ad459
commit c75e3c45e5
8 changed files with 9 additions and 9 deletions

View file

@ -47,7 +47,7 @@ if(NOT ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} STRLESS 3.1 AND ";${CMAKE_C
target_compile_features(pugixml PUBLIC cxx_long_long_type)
endif()
set_target_properties(pugixml PROPERTIES VERSION 1.7 SOVERSION 1)
set_target_properties(pugixml PROPERTIES VERSION 1.8 SOVERSION 1)
get_target_property(PUGIXML_VERSION_STRING pugixml VERSION)
if(BUILD_PKGCONFIG)

View file

@ -1,4 +1,4 @@
pugixml 1.7 - an XML processing library
pugixml 1.8 - an XML processing library
Copyright (C) 2006-2016, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
Report bugs and download new versions at http://pugixml.org/

View file

@ -7,7 +7,7 @@ configurations {
nuget {
nuspec {
id = pugixml;
version: 1.7.0-appveyor;
version: 1.8.0-appveyor;
authors: {Arseny Kapoulkine};
owners: {Arseny Kapoulkine};

View file

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "pugixml"
s.version = "1.7"
s.version = "1.8"
s.summary = "C++ XML parser library."
s.homepage = "http://pugixml.org"
s.license = { :type => 'MIT', :text => <<-qwertyuiop

View file

@ -1,5 +1,5 @@
/**
* pugixml parser - version 1.7
* pugixml parser - version 1.8
* --------------------------------------------------------
* Copyright (C) 2006-2016, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/

View file

@ -1,5 +1,5 @@
/**
* pugixml parser - version 1.7
* pugixml parser - version 1.8
* --------------------------------------------------------
* Copyright (C) 2006-2016, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
* Report bugs and download new versions at http://pugixml.org/

View file

@ -1,5 +1,5 @@
/**
* pugixml parser - version 1.7
* pugixml parser - version 1.8
* --------------------------------------------------------
* Copyright (C) 2006-2016, 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 170
# define PUGIXML_VERSION 180
#endif
// Include user configuration file (this can define various configuration macros)

View file

@ -1,5 +1,5 @@
#include "../src/pugixml.hpp"
#if PUGIXML_VERSION != 170
#if PUGIXML_VERSION != 180
#error Unexpected pugixml version
#endif