aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-01-30 15:27:09 +0100
committerChristian Grothoff <christian@grothoff.org>2021-01-30 15:27:46 +0100
commit4894c060b297a46c968216b44cc02592e345498d (patch)
tree06de502195a42c380dbfba73c04dec5e52eb24ec
parent0ad12329a7a4dc89ae63e8b032badf559b4f5550 (diff)
downloadlibextractor-4894c060b297a46c968216b44cc02592e345498d.tar.gz
libextractor-4894c060b297a46c968216b44cc02592e345498d.zip
releasing v1.11v1.11
-rw-r--r--ChangeLog21
-rw-r--r--configure.ac2
-rw-r--r--src/include/extractor.h2
3 files changed, 15 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index afbcecc..a1ba981 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
1Sat 30 Jan 2021 03:25:35 PM CET
2 Fix #6709: mask SIGPIPE to avoid test case failure
3 with latest librpm. Remove plibc.h logic.
4 Releasing GNU libextractor 1.11. -CG
5
1Thu Oct 29 09:20:41 PM CET 2020 6Thu Oct 29 09:20:41 PM CET 2020
2 Fix #6613: test failure with latest exiv2 library 7 Fix #6613: test failure with latest exiv2 library
3 (harmless). Add hard timeout for zzuf test suite 8 (harmless). Add hard timeout for zzuf test suite
4 on systems where timeout command exists. -CG 9 on systems where timeout command exists. -CG
5 10
6Thu Jul 2 15:58:16 CEST 2020 11Thu Jul 2 15:58:16 CEST 2020
7 Fixed some code that called deprecated libav routines. 12 Fixed some code that called deprecated libav routines.
@@ -18,7 +23,7 @@ Mon 29 Jul 2019 05:57:04 PM CEST
18 Fix build issue with exiv2-0.27 (#5820). -AS (via Gentoo) 23 Fix build issue with exiv2-0.27 (#5820). -AS (via Gentoo)
19 24
20Mon 13 May 2019 07:42:19 AM CEST 25Mon 13 May 2019 07:42:19 AM CEST
21 Consistently use AS_IF and AS_CASE in configure.ac. -CG 26 Consistently use AS_IF and AS_CASE in configure.ac. -CG
22 27
23Sun 12 May 2019 01:56:56 PM CEST 28Sun 12 May 2019 01:56:56 PM CEST
24 Updated French translation. -CG 29 Updated French translation. -CG
@@ -569,7 +574,7 @@ Thu Aug 18 21:18:28 PDT 2005
569 Made quotations match GNU standards. 574 Made quotations match GNU standards.
570 575
571Sat Aug 13 18:41:02 PDT 2005 576Sat Aug 13 18:41:02 PDT 2005
572 Fixed problems with ole2 extractor. Also removed 577 Fixed problems with ole2 extractor. Also removed
573 requirement for static version of glib (!). 578 requirement for static version of glib (!).
574 Releasing libextractor 0.5.3. 579 Releasing libextractor 0.5.3.
575 580
@@ -616,7 +621,7 @@ Fri May 6 14:54:58 EST 2005
616 (important for systems with not that much memory). 621 (important for systems with not that much memory).
617 622
618Fri May 6 06:02:02 EST 2005 623Fri May 6 06:02:02 EST 2005
619 Added Python binding. 624 Added Python binding.
620 625
621Tue Apr 5 17:22:28 EST 2005 626Tue Apr 5 17:22:28 EST 2005
622 Added translation to Kinyarwanda. 627 Added translation to Kinyarwanda.
@@ -936,8 +941,8 @@ Sun Jun 2 22:49:17 EST 2002
936 with libhtmlparse). Released v0.0.2. 941 with libhtmlparse). Released v0.0.2.
937 942
938Sat May 25 16:56:59 EST 2002 943Sat May 25 16:56:59 EST 2002
939 Added building of a description from artist, 944 Added building of a description from artist,
940 title and album, fixed bugs. 945 title and album, fixed bugs.
941 946
942Tue May 21 22:24:07 EST 2002 947Tue May 21 22:24:07 EST 2002
943 Added removing of duplicates, splitting keywords, 948 Added removing of duplicates, splitting keywords,
diff --git a/configure.ac b/configure.ac
index 3c9b972..456287a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@
16# 16#
17# 17#
18AC_PREREQ(2.61) 18AC_PREREQ(2.61)
19AC_INIT([libextractor], [1.10], [bug-libextractor@gnu.org]) 19AC_INIT([libextractor], [1.11], [bug-libextractor@gnu.org])
20AC_CONFIG_AUX_DIR([build-aux]) 20AC_CONFIG_AUX_DIR([build-aux])
21AC_CONFIG_HEADERS([config.h]) 21AC_CONFIG_HEADERS([config.h])
22AC_CONFIG_MACRO_DIR([m4]) 22AC_CONFIG_MACRO_DIR([m4])
diff --git a/src/include/extractor.h b/src/include/extractor.h
index 3e6c098..78fe627 100644
--- a/src/include/extractor.h
+++ b/src/include/extractor.h
@@ -35,7 +35,7 @@ extern "C" {
35 * 0.2.6-1 => 0x00020601 35 * 0.2.6-1 => 0x00020601
36 * 4.5.2-0 => 0x04050200 36 * 4.5.2-0 => 0x04050200
37 */ 37 */
38#define EXTRACTOR_VERSION 0x01080001 38#define EXTRACTOR_VERSION 0x010B0000
39 39
40#include <stdio.h> 40#include <stdio.h>
41 41