aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2019-07-13 17:17:58 +0200
committerMark Wielaard <mark@klomp.org>2019-07-13 17:17:58 +0200
commit6a8690fc8d26c815e798c588f796eabe9d684cf0 (patch)
tree5c486de7f86667d0f58f2a945c5c13d71235e98e
parent1c8dd8698c1c84c39c25d950edf6aec4eca70901 (diff)
downloadbzip2-6a8690fc8d26c815e798c588f796eabe9d684cf0.tar.gz
bzip2-6a8690fc8d26c815e798c588f796eabe9d684cf0.tar.bz2
bzip2-6a8690fc8d26c815e798c588f796eabe9d684cf0.zip
Prepare for 1.0.8 release.bzip2-1.0.8
-rw-r--r--CHANGES20
-rw-r--r--LICENSE4
-rw-r--r--Makefile6
-rw-r--r--Makefile-libbz2_so14
-rw-r--r--README5
-rw-r--r--README.COMPILATION.PROBLEMS4
-rw-r--r--README.XML.STUFF4
-rw-r--r--blocksort.c4
-rw-r--r--bzip2.14
-rw-r--r--bzip2.1.preformatted4
-rw-r--r--bzip2.c6
-rw-r--r--bzip2.txt4
-rw-r--r--bzip2recover.c6
-rw-r--r--bzlib.c4
-rw-r--r--bzlib.h4
-rw-r--r--bzlib_private.h6
-rw-r--r--compress.c4
-rw-r--r--crctable.c4
-rw-r--r--decompress.c4
-rw-r--r--entities.xml6
-rwxr-xr-xformat.pl4
-rw-r--r--huffman.c4
-rw-r--r--mk251.c4
-rw-r--r--randtable.c4
-rw-r--r--spewG.c4
-rw-r--r--unzcrash.c4
-rwxr-xr-xxmlproc.sh4
27 files changed, 81 insertions, 64 deletions
diff --git a/CHANGES b/CHANGES
index d9b4c05..30afead 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,8 +2,8 @@
2 This file is part of bzip2/libbzip2, a program and library for 2 This file is part of bzip2/libbzip2, a program and library for
3 lossless, block-sorting data compression. 3 lossless, block-sorting data compression.
4 4
5 bzip2/libbzip2 version 1.0.7 of 27 June 2019 5 bzip2/libbzip2 version 1.0.8 of 13 July 2019
6 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 6 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
7 7
8 Please read the WARNING, DISCLAIMER and PATENTS sections in the 8 Please read the WARNING, DISCLAIMER and PATENTS sections in the
9 README file. 9 README file.
@@ -338,3 +338,19 @@ Security fix only. Fixes CERT-FI 20469 as it applies to bzip2.
338* bzip2recover: Fix use after free issue with outFile (CVE-2016-3189) 338* bzip2recover: Fix use after free issue with outFile (CVE-2016-3189)
339 339
340* Make sure nSelectors is not out of range (CVE-2019-12900) 340* Make sure nSelectors is not out of range (CVE-2019-12900)
341
3421.0.8 (13 Jul 19)
343~~~~~~~~~~~~~~~~~
344
345* Accept as many selectors as the file format allows.
346 This relaxes the fix for CVE-2019-12900 from 1.0.7
347 so that bzip2 allows decompression of bz2 files that
348 use (too) many selectors again.
349
350* Fix handling of large (> 4GB) files on Windows.
351
352* Cleanup of bzdiff and bzgrep scripts so they don't use
353 any bash extensions and handle multiple archives correctly.
354
355* There is now a bz2-files testsuite at
356 https://sourceware.org/git/bzip2-tests.git
diff --git a/LICENSE b/LICENSE
index 95f9598..81a37ea 100644
--- a/LICENSE
+++ b/LICENSE
@@ -2,7 +2,7 @@
2-------------------------------------------------------------------------- 2--------------------------------------------------------------------------
3 3
4This program, "bzip2", the associated library "libbzip2", and all 4This program, "bzip2", the associated library "libbzip2", and all
5documentation, are copyright (C) 1996-2010 Julian R Seward. All 5documentation, are copyright (C) 1996-2019 Julian R Seward. All
6rights reserved. 6rights reserved.
7 7
8Redistribution and use in source and binary forms, with or without 8Redistribution and use in source and binary forms, with or without
@@ -37,6 +37,6 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 38
39Julian Seward, jseward@acm.org 39Julian Seward, jseward@acm.org
40bzip2/libbzip2 version 1.0.7 of 27 June 2019 40bzip2/libbzip2 version 1.0.8 of 13 July 2019
41 41
42-------------------------------------------------------------------------- 42--------------------------------------------------------------------------
diff --git a/Makefile b/Makefile
index 6706685..f8a1772 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@
2# This file is part of bzip2/libbzip2, a program and library for 2# This file is part of bzip2/libbzip2, a program and library for
3# lossless, block-sorting data compression. 3# lossless, block-sorting data compression.
4# 4#
5# bzip2/libbzip2 version 1.0.6 of 6 September 2010 5# bzip2/libbzip2 version 1.0.8 of 13 July 2019
6# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 6# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
7# 7#
8# Please read the WARNING, DISCLAIMER and PATENTS sections in the 8# Please read the WARNING, DISCLAIMER and PATENTS sections in the
9# README file. 9# README file.
@@ -137,7 +137,7 @@ bzip2recover.o: bzip2recover.c
137distclean: clean 137distclean: clean
138 rm -f manual.ps manual.html manual.pdf 138 rm -f manual.ps manual.html manual.pdf
139 139
140DISTNAME=bzip2-1.0.7 140DISTNAME=bzip2-1.0.8
141dist: check manual 141dist: check manual
142 rm -f $(DISTNAME) 142 rm -f $(DISTNAME)
143 ln -s -f . $(DISTNAME) 143 ln -s -f . $(DISTNAME)
diff --git a/Makefile-libbz2_so b/Makefile-libbz2_so
index 862eb7d..fb0f230 100644
--- a/Makefile-libbz2_so
+++ b/Makefile-libbz2_so
@@ -1,6 +1,6 @@
1 1
2# This Makefile builds a shared version of the library, 2# This Makefile builds a shared version of the library,
3# libbz2.so.1.0.7, with soname libbz2.so.1.0, 3# libbz2.so.1.0.8, with soname libbz2.so.1.0,
4# at least on x86-Linux (RedHat 7.2), 4# at least on x86-Linux (RedHat 7.2),
5# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). 5# with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).
6# Please see the README file for some important info 6# Please see the README file for some important info
@@ -10,8 +10,8 @@
10# This file is part of bzip2/libbzip2, a program and library for 10# This file is part of bzip2/libbzip2, a program and library for
11# lossless, block-sorting data compression. 11# lossless, block-sorting data compression.
12# 12#
13# bzip2/libbzip2 version 1.0.6 of 6 September 2010 13# bzip2/libbzip2 version 1.0.8 of 13 July 2019
14# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 14# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
15# 15#
16# Please read the WARNING, DISCLAIMER and PATENTS sections in the 16# Please read the WARNING, DISCLAIMER and PATENTS sections in the
17# README file. 17# README file.
@@ -35,13 +35,13 @@ OBJS= blocksort.o \
35 bzlib.o 35 bzlib.o
36 36
37all: $(OBJS) 37all: $(OBJS)
38 $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.7 $(OBJS) 38 $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.8 $(OBJS)
39 $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.7 39 $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
40 rm -f libbz2.so.1.0 40 rm -f libbz2.so.1.0
41 ln -s libbz2.so.1.0.7 libbz2.so.1.0 41 ln -s libbz2.so.1.0.8 libbz2.so.1.0
42 42
43clean: 43clean:
44 rm -f $(OBJS) bzip2.o libbz2.so.1.0.7 libbz2.so.1.0 bzip2-shared 44 rm -f $(OBJS) bzip2.o libbz2.so.1.0.8 libbz2.so.1.0 bzip2-shared
45 45
46blocksort.o: blocksort.c 46blocksort.o: blocksort.c
47 $(CC) $(CFLAGS) -c blocksort.c 47 $(CC) $(CFLAGS) -c blocksort.c
diff --git a/README b/README
index 42543d1..b9c6099 100644
--- a/README
+++ b/README
@@ -6,8 +6,8 @@ This version is fully compatible with the previous public releases.
6This file is part of bzip2/libbzip2, a program and library for 6This file is part of bzip2/libbzip2, a program and library for
7lossless, block-sorting data compression. 7lossless, block-sorting data compression.
8 8
9bzip2/libbzip2 version 1.0.7 of 27 June 2019 9bzip2/libbzip2 version 1.0.8 of 13 July 2019
10Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 10Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
11 11
12Please read the WARNING, DISCLAIMER and PATENTS sections in this file. 12Please read the WARNING, DISCLAIMER and PATENTS sections in this file.
13 13
@@ -193,3 +193,4 @@ Cambridge, UK.
19310 December 2007 (bzip2, version 1.0.5) 19310 December 2007 (bzip2, version 1.0.5)
194 6 Sept 2010 (bzip2, version 1.0.6) 194 6 Sept 2010 (bzip2, version 1.0.6)
19527 June 2019 (bzip2, version 1.0.7) 19527 June 2019 (bzip2, version 1.0.7)
19613 July 2019 (bzip2, version 1.0.8)
diff --git a/README.COMPILATION.PROBLEMS b/README.COMPILATION.PROBLEMS
index 9e6ac5a..fa317a5 100644
--- a/README.COMPILATION.PROBLEMS
+++ b/README.COMPILATION.PROBLEMS
@@ -2,8 +2,8 @@
2This file is part of bzip2/libbzip2, a program and library for 2This file is part of bzip2/libbzip2, a program and library for
3lossless, block-sorting data compression. 3lossless, block-sorting data compression.
4 4
5bzip2/libbzip2 version 1.0.7 of 27 June 2019 5bzip2/libbzip2 version 1.0.8 of 13 July 2019
6Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 6Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
7 7
8Please read the WARNING, DISCLAIMER and PATENTS sections in the 8Please read the WARNING, DISCLAIMER and PATENTS sections in the
9README file. 9README file.
diff --git a/README.XML.STUFF b/README.XML.STUFF
index b0575c3..1503476 100644
--- a/README.XML.STUFF
+++ b/README.XML.STUFF
@@ -2,8 +2,8 @@
2 This file is part of bzip2/libbzip2, a program and library for 2 This file is part of bzip2/libbzip2, a program and library for
3 lossless, block-sorting data compression. 3 lossless, block-sorting data compression.
4 4
5 bzip2/libbzip2 version 1.0.7 of 27 June 2019 5 bzip2/libbzip2 version 1.0.8 of 13 July 2019
6 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 6 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
7 7
8 Please read the WARNING, DISCLAIMER and PATENTS sections in the 8 Please read the WARNING, DISCLAIMER and PATENTS sections in the
9 README file. 9 README file.
diff --git a/blocksort.c b/blocksort.c
index 2657901..92d81fe 100644
--- a/blocksort.c
+++ b/blocksort.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/bzip2.1 b/bzip2.1
index f49a78c..0cbcdab 100644
--- a/bzip2.1
+++ b/bzip2.1
@@ -1,7 +1,7 @@
1.PU 1.PU
2.TH bzip2 1 2.TH bzip2 1
3.SH NAME 3.SH NAME
4bzip2, bunzip2 \- a block-sorting file compressor, v1.0.7 4bzip2, bunzip2 \- a block-sorting file compressor, v1.0.8
5.br 5.br
6bzcat \- decompresses files to stdout 6bzcat \- decompresses files to stdout
7.br 7.br
@@ -405,7 +405,7 @@ I/O error messages are not as helpful as they could be.
405tries hard to detect I/O errors and exit cleanly, but the details of 405tries hard to detect I/O errors and exit cleanly, but the details of
406what the problem is sometimes seem rather misleading. 406what the problem is sometimes seem rather misleading.
407 407
408This manual page pertains to version 1.0.7 of 408This manual page pertains to version 1.0.8 of
409.I bzip2. 409.I bzip2.
410Compressed data created by this version is entirely forwards and 410Compressed data created by this version is entirely forwards and
411backwards compatible with the previous public releases, versions 411backwards compatible with the previous public releases, versions
diff --git a/bzip2.1.preformatted b/bzip2.1.preformatted
index a2279ad..787f1c6 100644
--- a/bzip2.1.preformatted
+++ b/bzip2.1.preformatted
@@ -3,7 +3,7 @@ bzip2(1) bzip2(1)
3 3
4 4
5NNAAMMEE 5NNAAMMEE
6 bzip2, bunzip2 − a block‐sorting file compressor, v1.0.7 6 bzip2, bunzip2 − a block‐sorting file compressor, v1.0.8
7 bzcat − decompresses files to stdout 7 bzcat − decompresses files to stdout
8 bzip2recover − recovers data from damaged bzip2 files 8 bzip2recover − recovers data from damaged bzip2 files
9 9
@@ -348,7 +348,7 @@ CCAAVVEEAATTSS
348 but the details of what the problem is sometimes seem 348 but the details of what the problem is sometimes seem
349 rather misleading. 349 rather misleading.
350 350
351 This manual page pertains to version 1.0.7 of _b_z_i_p_2_. Com­ 351 This manual page pertains to version 1.0.8 of _b_z_i_p_2_. Com­
352 pressed data created by this version is entirely forwards 352 pressed data created by this version is entirely forwards
353 and backwards compatible with the previous public 353 and backwards compatible with the previous public
354 releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, 354 releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1,
diff --git a/bzip2.c b/bzip2.c
index 01a41d2..d95d280 100644
--- a/bzip2.c
+++ b/bzip2.c
@@ -7,8 +7,8 @@
7 This file is part of bzip2/libbzip2, a program and library for 7 This file is part of bzip2/libbzip2, a program and library for
8 lossless, block-sorting data compression. 8 lossless, block-sorting data compression.
9 9
10 bzip2/libbzip2 version 1.0.7 of 27 June 2019 10 bzip2/libbzip2 version 1.0.8 of 13 July 2019
11 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 11 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
12 12
13 Please read the WARNING, DISCLAIMER and PATENTS sections in the 13 Please read the WARNING, DISCLAIMER and PATENTS sections in the
14 README file. 14 README file.
@@ -1605,7 +1605,7 @@ void license ( void )
1605 "bzip2, a block-sorting file compressor. " 1605 "bzip2, a block-sorting file compressor. "
1606 "Version %s.\n" 1606 "Version %s.\n"
1607 " \n" 1607 " \n"
1608 " Copyright (C) 1996-2010 by Julian Seward.\n" 1608 " Copyright (C) 1996-2019 by Julian Seward.\n"
1609 " \n" 1609 " \n"
1610 " This program is free software; you can redistribute it and/or modify\n" 1610 " This program is free software; you can redistribute it and/or modify\n"
1611 " it under the terms set out in the LICENSE file, which is included\n" 1611 " it under the terms set out in the LICENSE file, which is included\n"
diff --git a/bzip2.txt b/bzip2.txt
index c449a1a..a50570b 100644
--- a/bzip2.txt
+++ b/bzip2.txt
@@ -1,6 +1,6 @@
1 1
2NAME 2NAME
3 bzip2, bunzip2 - a block-sorting file compressor, v1.0.7 3 bzip2, bunzip2 - a block-sorting file compressor, v1.0.8
4 bzcat - decompresses files to stdout 4 bzcat - decompresses files to stdout
5 bzip2recover - recovers data from damaged bzip2 files 5 bzip2recover - recovers data from damaged bzip2 files
6 6
@@ -345,7 +345,7 @@ CAVEATS
345 but the details of what the problem is sometimes seem 345 but the details of what the problem is sometimes seem
346 rather misleading. 346 rather misleading.
347 347
348 This manual page pertains to version 1.0.7 of bzip2. Com- 348 This manual page pertains to version 1.0.8 of bzip2. Com-
349 pressed data created by this version is entirely forwards 349 pressed data created by this version is entirely forwards
350 and backwards compatible with the previous public 350 and backwards compatible with the previous public
351 releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, 351 releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1,
diff --git a/bzip2recover.c b/bzip2recover.c
index c0b9eac..a8131e0 100644
--- a/bzip2recover.c
+++ b/bzip2recover.c
@@ -7,8 +7,8 @@
7 This file is part of bzip2/libbzip2, a program and library for 7 This file is part of bzip2/libbzip2, a program and library for
8 lossless, block-sorting data compression. 8 lossless, block-sorting data compression.
9 9
10 bzip2/libbzip2 version 1.0.7 of 27 June 2019 10 bzip2/libbzip2 version 1.0.8 of 13 July 2019
11 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 11 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
12 12
13 Please read the WARNING, DISCLAIMER and PATENTS sections in the 13 Please read the WARNING, DISCLAIMER and PATENTS sections in the
14 README file. 14 README file.
@@ -314,7 +314,7 @@ Int32 main ( Int32 argc, Char** argv )
314 inFileName[0] = outFileName[0] = 0; 314 inFileName[0] = outFileName[0] = 0;
315 315
316 fprintf ( stderr, 316 fprintf ( stderr,
317 "bzip2recover 1.0.7: extracts blocks from damaged .bz2 files.\n" ); 317 "bzip2recover 1.0.8: extracts blocks from damaged .bz2 files.\n" );
318 318
319 if (argc != 2) { 319 if (argc != 2) {
320 fprintf ( stderr, "%s: usage is `%s damaged_file_name'.\n", 320 fprintf ( stderr, "%s: usage is `%s damaged_file_name'.\n",
diff --git a/bzlib.c b/bzlib.c
index 2dbe666..2178655 100644
--- a/bzlib.c
+++ b/bzlib.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/bzlib.h b/bzlib.h
index 8cf0791..8966a6c 100644
--- a/bzlib.h
+++ b/bzlib.h
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/bzlib_private.h b/bzlib_private.h
index 7975552..3755a6f 100644
--- a/bzlib_private.h
+++ b/bzlib_private.h
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
@@ -36,7 +36,7 @@
36 36
37/*-- General stuff. --*/ 37/*-- General stuff. --*/
38 38
39#define BZ_VERSION "1.0.7, 27-Jun-2019" 39#define BZ_VERSION "1.0.8, 13-Jul-2019"
40 40
41typedef char Char; 41typedef char Char;
42typedef unsigned char Bool; 42typedef unsigned char Bool;
diff --git a/compress.c b/compress.c
index 76adee6..5dfa002 100644
--- a/compress.c
+++ b/compress.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/crctable.c b/crctable.c
index 746efac..2b33c25 100644
--- a/crctable.c
+++ b/crctable.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/decompress.c b/decompress.c
index 3303499..a1a0bac 100644
--- a/decompress.c
+++ b/decompress.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/entities.xml b/entities.xml
index a415062..dd69924 100644
--- a/entities.xml
+++ b/entities.xml
@@ -2,9 +2,9 @@
2<!ENTITY bz-url "https://sourceware.org/bzip2/"> 2<!ENTITY bz-url "https://sourceware.org/bzip2/">
3<!ENTITY bz-author "jseward@acm.org"> 3<!ENTITY bz-author "jseward@acm.org">
4<!ENTITY bz-email "bzip2-devel@sourceware.org"> 4<!ENTITY bz-email "bzip2-devel@sourceware.org">
5<!ENTITY bz-lifespan "1996-2010"> 5<!ENTITY bz-lifespan "1996-2019">
6 6
7<!ENTITY bz-version "1.0.7"> 7<!ENTITY bz-version "1.0.8">
8<!ENTITY bz-date "27 June 2019"> 8<!ENTITY bz-date "13 July 2019">
9 9
10<!ENTITY manual-title "bzip2 Manual"> 10<!ENTITY manual-title "bzip2 Manual">
diff --git a/format.pl b/format.pl
index 74d7eda..2734ded 100755
--- a/format.pl
+++ b/format.pl
@@ -4,8 +4,8 @@
4# This file is part of bzip2/libbzip2, a program and library for 4# This file is part of bzip2/libbzip2, a program and library for
5# lossless, block-sorting data compression. 5# lossless, block-sorting data compression.
6# 6#
7# bzip2/libbzip2 version 1.0.7 of 27 June 2019 7# bzip2/libbzip2 version 1.0.8 of 13 July 2019
8# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 8# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
9# 9#
10# Please read the WARNING, DISCLAIMER and PATENTS sections in the 10# Please read the WARNING, DISCLAIMER and PATENTS sections in the
11# README file. 11# README file.
diff --git a/huffman.c b/huffman.c
index 0fd6fd7..43a1899 100644
--- a/huffman.c
+++ b/huffman.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/mk251.c b/mk251.c
index 9528b92..6c5bbf9 100644
--- a/mk251.c
+++ b/mk251.c
@@ -9,8 +9,8 @@
9 This file is part of bzip2/libbzip2, a program and library for 9 This file is part of bzip2/libbzip2, a program and library for
10 lossless, block-sorting data compression. 10 lossless, block-sorting data compression.
11 11
12 bzip2/libbzip2 version 1.0.7 of 27 June 2019 12 bzip2/libbzip2 version 1.0.8 of 13 July 2019
13 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 13 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
14 14
15 Please read the WARNING, DISCLAIMER and PATENTS sections in the 15 Please read the WARNING, DISCLAIMER and PATENTS sections in the
16 README file. 16 README file.
diff --git a/randtable.c b/randtable.c
index 726d62f..bdc6d4a 100644
--- a/randtable.c
+++ b/randtable.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.7 of 27 June 2019 11 bzip2/libbzip2 version 1.0.8 of 13 July 2019
12 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 12 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
diff --git a/spewG.c b/spewG.c
index 320dc85..65d24c8 100644
--- a/spewG.c
+++ b/spewG.c
@@ -13,8 +13,8 @@
13 This file is part of bzip2/libbzip2, a program and library for 13 This file is part of bzip2/libbzip2, a program and library for
14 lossless, block-sorting data compression. 14 lossless, block-sorting data compression.
15 15
16 bzip2/libbzip2 version 1.0.7 of 27 June 2019 16 bzip2/libbzip2 version 1.0.8 of 13 July 2019
17 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 17 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
18 18
19 Please read the WARNING, DISCLAIMER and PATENTS sections in the 19 Please read the WARNING, DISCLAIMER and PATENTS sections in the
20 README file. 20 README file.
diff --git a/unzcrash.c b/unzcrash.c
index 6e7c631..c68f93c 100644
--- a/unzcrash.c
+++ b/unzcrash.c
@@ -17,8 +17,8 @@
17 This file is part of bzip2/libbzip2, a program and library for 17 This file is part of bzip2/libbzip2, a program and library for
18 lossless, block-sorting data compression. 18 lossless, block-sorting data compression.
19 19
20 bzip2/libbzip2 version 1.0.7 of 27 June 2019 20 bzip2/libbzip2 version 1.0.8 of 13 July 2019
21 Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 21 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
22 22
23 Please read the WARNING, DISCLAIMER and PATENTS sections in the 23 Please read the WARNING, DISCLAIMER and PATENTS sections in the
24 README file. 24 README file.
diff --git a/xmlproc.sh b/xmlproc.sh
index ea6e7e6..16fe72b 100755
--- a/xmlproc.sh
+++ b/xmlproc.sh
@@ -5,8 +5,8 @@
5# This file is part of bzip2/libbzip2, a program and library for 5# This file is part of bzip2/libbzip2, a program and library for
6# lossless, block-sorting data compression. 6# lossless, block-sorting data compression.
7# 7#
8# bzip2/libbzip2 version 1.0.7 of 27 June 2019 8# bzip2/libbzip2 version 1.0.8 of 13 July 2019
9# Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> 9# Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
10# 10#
11# Please read the WARNING, DISCLAIMER and PATENTS sections in the 11# Please read the WARNING, DISCLAIMER and PATENTS sections in the
12# README file. 12# README file.