Bump version from 2.2.8 to 2.2.9

This commit is contained in:
Sebastian Pipping 2019-09-13 21:49:44 +02:00
parent fc79a3acdf
commit 25c96511a0
8 changed files with 13 additions and 13 deletions

View File

@ -3,25 +3,25 @@
The cmake based buildsystem for expat works on Windows (cygwin, mingw, Visual
Studio) and should work on all other platform cmake supports.
Assuming ~/expat-2.2.8 is the source directory of expat, add a subdirectory
Assuming ~/expat-2.2.9 is the source directory of expat, add a subdirectory
build and change into that directory:
~/expat-2.2.8$ mkdir build && cd build
~/expat-2.2.8/build$
~/expat-2.2.9$ mkdir build && cd build
~/expat-2.2.9/build$
From that directory, call cmake first, then call make, make test and
make install in the usual way:
~/expat-2.2.8/build$ cmake ..
~/expat-2.2.9/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
....
-- Configuring done
-- Generating done
-- Build files have been written to: /home/patrick/expat-2.2.8/build
-- Build files have been written to: /home/patrick/expat-2.2.9/build
If you want to specify the install location for your files, append
-DCMAKE_INSTALL_PREFIX=/your/install/path to the cmake call.
~/expat-2.2.8/build$ make && make test && make install
~/expat-2.2.9/build$ make && make test && make install
Scanning dependencies of target expat
[ 5%] Building C object CMakeFiles/expat.dir/lib/xmlparse.c.o
[ 11%] Building C object CMakeFiles/expat.dir/lib/xmlrole.c.o

View File

@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.1.3)
project(expat
VERSION
2.2.8
2.2.9
LANGUAGES
C
)

View File

@ -3,7 +3,7 @@
[![Packaging status](https://repology.org/badge/tiny-repos/expat.svg)](https://repology.org/metapackage/expat/versions)
# Expat, Release 2.2.8
# Expat, Release 2.2.9
This is Expat, a C library for parsing XML, started by
[James Clark](https://en.wikipedia.org/wiki/James_Clark_(programmer)) in 1997.

View File

@ -1,4 +1,4 @@
%define version 2.2.8
%define version 2.2.9
%define release 1
Summary: Expat is an XML 1.0 parser written in C.

View File

@ -1015,7 +1015,7 @@ XML_GetFeatureList(void);
*/
#define XML_MAJOR_VERSION 2
#define XML_MINOR_VERSION 2
#define XML_MICRO_VERSION 8
#define XML_MICRO_VERSION 9
#ifdef __cplusplus
}

View File

@ -1,4 +1,4 @@
/* f2d0ab6d1d4422a08cf1cf3bbdfba96b49dea42fb5ff4615e03a2a25c306e769 (2.2.8+)
/* f519f27c7c3b79fee55aeb8b1e53b7384b079d9118bf3a62eb3a60986a6742f2 (2.2.9+)
__ __ _
___\ \/ /_ __ __ _| |_
/ _ \\ /| '_ \ / _` | __|

View File

@ -7329,7 +7329,7 @@ START_TEST(test_misc_version) {
fail("Version mismatch");
#if ! defined(XML_UNICODE) || defined(XML_UNICODE_WCHAR_T)
if (xcstrcmp(version_text, XCS("expat_2.2.8"))) /* needs bump on releases */
if (xcstrcmp(version_text, XCS("expat_2.2.9"))) /* needs bump on releases */
fail("XML_*_VERSION in expat.h out of sync?\n");
#else
/* If we have XML_UNICODE defined but not XML_UNICODE_WCHAR_T

View File

@ -4,7 +4,7 @@
; This script was contributed by Tim Peters.
; It was designed for Inno Setup 2.0.19 but works with later versions as well.
#define expatVer "2.2.8"
#define expatVer "2.2.9"
[Setup]
AppName=Expat