From 2e2f995eda043092ec7e28948dc13d6497a05225 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Sat, 26 Jan 2019 16:49:48 -0800 Subject: [PATCH] Version 2.8.3. --- CMakeLists.txt | 2 +- Minizip.podspec | 2 +- README.md | 2 +- minizip.c | 2 +- mz.h | 4 ++-- mz_compat.c | 2 +- mz_compat.h | 2 +- mz_crypt.c | 2 +- mz_crypt.h | 2 +- mz_crypt_apple.c | 2 +- mz_crypt_brg.c | 2 +- mz_crypt_openssl.c | 2 +- mz_crypt_win32.c | 2 +- mz_os.c | 2 +- mz_os.h | 2 +- mz_os_posix.c | 2 +- mz_os_win32.c | 2 +- mz_strm.c | 2 +- mz_strm.h | 2 +- mz_strm_buf.c | 2 +- mz_strm_buf.h | 2 +- mz_strm_bzip.c | 2 +- mz_strm_bzip.h | 2 +- mz_strm_libcomp.c | 2 +- mz_strm_libcomp.h | 2 +- mz_strm_lzma.c | 2 +- mz_strm_lzma.h | 2 +- mz_strm_mem.c | 2 +- mz_strm_mem.h | 2 +- mz_strm_os.h | 2 +- mz_strm_os_posix.c | 2 +- mz_strm_os_win32.c | 2 +- mz_strm_pkcrypt.c | 2 +- mz_strm_pkcrypt.h | 2 +- mz_strm_split.c | 2 +- mz_strm_split.h | 2 +- mz_strm_wzaes.c | 2 +- mz_strm_wzaes.h | 2 +- mz_strm_zlib.c | 2 +- mz_strm_zlib.h | 2 +- mz_zip.c | 2 +- mz_zip.h | 2 +- mz_zip_rw.c | 2 +- mz_zip_rw.h | 2 +- test/fuzz/standalone.c | 2 +- test/fuzz/unzip_fuzzer.c | 2 +- test/fuzz/zip_fuzzer.c | 2 +- test/test.c | 2 +- 48 files changed, 49 insertions(+), 49 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf607c0..409fcb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ option(MZ_BUILD_FUZZ_TEST "Builds minizip fuzzer executables" OFF) project("minizip" C) # Minizip library version -set(VERSION "2.8.2") +set(VERSION "2.8.3") # Minizip api version set(SOVERSION "2.5") diff --git a/Minizip.podspec b/Minizip.podspec index af76825..3fa2097 100644 --- a/Minizip.podspec +++ b/Minizip.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Minizip' - s.version = '2.8.2' + s.version = '2.8.3' s.license = 'zlib' s.summary = 'Minizip contrib in zlib with the latest bug fixes and advanced features' s.description = <<-DESC diff --git a/README.md b/README.md index 2591131..e97f0a8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# minizip 2.8.2 +# minizip 2.8.3 minizip is a zip manipulation library written in C that is supported on Windows, macOS, and Linux. diff --git a/minizip.c b/minizip.c index d51ad46..72d25fe 100644 --- a/minizip.c +++ b/minizip.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz.h b/mz.h index 768bd6a..ca59b24 100644 --- a/mz.h +++ b/mz.h @@ -1,5 +1,5 @@ /* mz.h -- Errors codes, zip flags and magic - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri @@ -15,7 +15,7 @@ /***************************************************************************/ /* MZ_VERSION */ -#define MZ_VERSION ("2.8.2") +#define MZ_VERSION ("2.8.3") /* MZ_ERROR */ #define MZ_OK (0) /* zlib */ diff --git a/mz_compat.c b/mz_compat.c index 3d8e55d..ca54107 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -1,5 +1,5 @@ /* mz_compat.c -- Backwards compatible interface for older versions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_compat.h b/mz_compat.h index 3c63109..35120de 100644 --- a/mz_compat.h +++ b/mz_compat.h @@ -1,5 +1,5 @@ /* mz_compat.h -- Backwards compatible interface for older versions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt.c b/mz_crypt.c index 434614a..574b0ab 100644 --- a/mz_crypt.c +++ b/mz_crypt.c @@ -1,5 +1,5 @@ /* mz_crypt.c -- Crypto/hash functions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt.h b/mz_crypt.h index 2fc92c7..e14944e 100644 --- a/mz_crypt.h +++ b/mz_crypt.h @@ -1,5 +1,5 @@ /* mz_crypt.h -- Crypto/hash functions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt_apple.c b/mz_crypt_apple.c index f2e1531..e17ae52 100644 --- a/mz_crypt_apple.c +++ b/mz_crypt_apple.c @@ -1,5 +1,5 @@ /* mz_crypt_apple.c -- Crypto/hash functions for Apple - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt_brg.c b/mz_crypt_brg.c index ff37a05..ba0eaed 100644 --- a/mz_crypt_brg.c +++ b/mz_crypt_brg.c @@ -1,5 +1,5 @@ /* mz_crypt_brg.c -- Crypto/hash functions using Brian Gladman's library - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt_openssl.c b/mz_crypt_openssl.c index 31eaa7c..8b3c030 100644 --- a/mz_crypt_openssl.c +++ b/mz_crypt_openssl.c @@ -1,5 +1,5 @@ /* mz_crypt_openssl.c -- Crypto/hash functions for OpenSSL - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt_win32.c b/mz_crypt_win32.c index 335a51b..99b3414 100644 --- a/mz_crypt_win32.c +++ b/mz_crypt_win32.c @@ -1,5 +1,5 @@ /* mz_crypt_win32.c -- Crypto/hash functions for Windows - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os.c b/mz_os.c index c2ab89e..9f827b7 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,5 +1,5 @@ /* mz_os.c -- System functions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os.h b/mz_os.h index 475baff..fbfc8d7 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,5 +1,5 @@ /* mz_os.h -- System functions - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os_posix.c b/mz_os_posix.c index 822370b..3871ea9 100644 --- a/mz_os_posix.c +++ b/mz_os_posix.c @@ -1,5 +1,5 @@ /* mz_os_posix.c -- System functions for posix - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os_win32.c b/mz_os_win32.c index db6cb7d..87464c4 100644 --- a/mz_os_win32.c +++ b/mz_os_win32.c @@ -1,5 +1,5 @@ /* mz_os_win32.c -- System functions for Windows - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm.c b/mz_strm.c index b08398c..91c557e 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,5 +1,5 @@ /* mz_strm.c -- Stream interface - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm.h b/mz_strm.h index ad676ed..3aa5a4b 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,5 +1,5 @@ /* mz_strm.h -- Stream interface - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_buf.c b/mz_strm_buf.c index 0ae0f8a..9d3a57a 100644 --- a/mz_strm_buf.c +++ b/mz_strm_buf.c @@ -1,5 +1,5 @@ /* mz_strm_buf.c -- Stream for buffering reads/writes - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project This version of ioapi is designed to buffer IO. diff --git a/mz_strm_buf.h b/mz_strm_buf.h index b9ab6a1..f6a873c 100644 --- a/mz_strm_buf.h +++ b/mz_strm_buf.h @@ -1,5 +1,5 @@ /* mz_strm_buf.h -- Stream for buffering reads/writes - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project This version of ioapi is designed to buffer IO. diff --git a/mz_strm_bzip.c b/mz_strm_bzip.c index 3bfb8dd..9a92eaf 100644 --- a/mz_strm_bzip.c +++ b/mz_strm_bzip.c @@ -1,5 +1,5 @@ /* mz_strm_bzip.c -- Stream for bzip inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_bzip.h b/mz_strm_bzip.h index 2f63544..c9ac371 100644 --- a/mz_strm_bzip.h +++ b/mz_strm_bzip.h @@ -1,5 +1,5 @@ /* mz_strm_bzip.h -- Stream for bzip inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_libcomp.c b/mz_strm_libcomp.c index 22c2a9c..175284f 100644 --- a/mz_strm_libcomp.c +++ b/mz_strm_libcomp.c @@ -1,5 +1,5 @@ /* mz_strm_libcomp.c -- Stream for apple compression - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_libcomp.h b/mz_strm_libcomp.h index c6033f1..4aeea30 100644 --- a/mz_strm_libcomp.h +++ b/mz_strm_libcomp.h @@ -1,5 +1,5 @@ /* mz_strm_libcomp.h -- Stream for apple compression - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_lzma.c b/mz_strm_lzma.c index 07781d3..fc32a6a 100644 --- a/mz_strm_lzma.c +++ b/mz_strm_lzma.c @@ -1,5 +1,5 @@ /* mz_strm_lzma.c -- Stream for lzma inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_lzma.h b/mz_strm_lzma.h index fd58ee0..690be7c 100644 --- a/mz_strm_lzma.h +++ b/mz_strm_lzma.h @@ -1,5 +1,5 @@ /* mz_strm_lzma.h -- Stream for lzma inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_mem.c b/mz_strm_mem.c index 7fec081..f114d5e 100644 --- a/mz_strm_mem.c +++ b/mz_strm_mem.c @@ -1,5 +1,5 @@ /* mz_strm_mem.c -- Stream for memory access - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project This interface is designed to access memory rather than files. diff --git a/mz_strm_mem.h b/mz_strm_mem.h index 2e3bbc8..d15ba4c 100644 --- a/mz_strm_mem.h +++ b/mz_strm_mem.h @@ -1,5 +1,5 @@ /* mz_strm_mem.h -- Stream for memory access - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_os.h b/mz_strm_os.h index 17373e7..f53b671 100644 --- a/mz_strm_os.h +++ b/mz_strm_os.h @@ -1,5 +1,5 @@ /* mz_sstrm_os.h -- Stream for filesystem access - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_os_posix.c b/mz_strm_os_posix.c index de28fa6..b1566c4 100644 --- a/mz_strm_os_posix.c +++ b/mz_strm_os_posix.c @@ -1,5 +1,5 @@ /* mz_strm_posix.c -- Stream for filesystem access for posix/linux - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_os_win32.c b/mz_strm_os_win32.c index c19b82c..0a82649 100644 --- a/mz_strm_os_win32.c +++ b/mz_strm_os_win32.c @@ -1,5 +1,5 @@ /* mz_strm_win32.c -- Stream for filesystem access for windows - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_pkcrypt.c b/mz_strm_pkcrypt.c index 236e79c..be19220 100644 --- a/mz_strm_pkcrypt.c +++ b/mz_strm_pkcrypt.c @@ -1,5 +1,5 @@ /* mz_strm_pkcrypt.c -- Code for traditional PKWARE encryption - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_pkcrypt.h b/mz_strm_pkcrypt.h index 766e99b..525142c 100644 --- a/mz_strm_pkcrypt.h +++ b/mz_strm_pkcrypt.h @@ -1,5 +1,5 @@ /* mz_strm_pkcrypt.h -- Code for traditional PKWARE encryption - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_split.c b/mz_strm_split.c index 5810b41..f9ee7b0 100644 --- a/mz_strm_split.c +++ b/mz_strm_split.c @@ -1,5 +1,5 @@ /* mz_strm_split.c -- Stream for split files - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_split.h b/mz_strm_split.h index 68c582d..fbb356e 100644 --- a/mz_strm_split.h +++ b/mz_strm_split.h @@ -1,5 +1,5 @@ /* mz_strm_split.h -- Stream for split files - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_wzaes.c b/mz_strm_wzaes.c index e50f522..0fa8ae2 100644 --- a/mz_strm_wzaes.c +++ b/mz_strm_wzaes.c @@ -1,5 +1,5 @@ /* mz_strm_wzaes.c -- Stream for WinZip AES encryption - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_wzaes.h b/mz_strm_wzaes.h index 2169fc5..234cdf6 100644 --- a/mz_strm_wzaes.h +++ b/mz_strm_wzaes.h @@ -1,5 +1,5 @@ /* mz_strm_wzaes.h -- Stream for WinZIP AES encryption - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_zlib.c b/mz_strm_zlib.c index 7afa534..677b9c8 100644 --- a/mz_strm_zlib.c +++ b/mz_strm_zlib.c @@ -1,5 +1,5 @@ /* mz_strm_zlib.c -- Stream for zlib inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_zlib.h b/mz_strm_zlib.h index ac32db9..9fa6df5 100644 --- a/mz_strm_zlib.h +++ b/mz_strm_zlib.h @@ -1,5 +1,5 @@ /* mz_strm_zlib.h -- Stream for zlib inflate/deflate - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip.c b/mz_zip.c index 87ab68a..32e9600 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,5 +1,5 @@ /* zip.c -- Zip manipulation - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip.h b/mz_zip.h index 7b34454..b67fb49 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,5 +1,5 @@ /* mz_zip.h -- Zip manipulation - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip_rw.c b/mz_zip_rw.c index 46aabe3..cb3a8a5 100644 --- a/mz_zip_rw.c +++ b/mz_zip_rw.c @@ -1,5 +1,5 @@ /* mz_zip_rw.c -- Zip reader/writer - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip_rw.h b/mz_zip_rw.h index c646ba0..0ff3c5c 100644 --- a/mz_zip_rw.h +++ b/mz_zip_rw.h @@ -1,5 +1,5 @@ /* mz_zip_rw.h -- Zip reader/writer - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/test/fuzz/standalone.c b/test/fuzz/standalone.c index 1ac7320..ee135fe 100644 --- a/test/fuzz/standalone.c +++ b/test/fuzz/standalone.c @@ -1,5 +1,5 @@ /* standalone.c - Standalone fuzzer tester - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2018 sebpop diff --git a/test/fuzz/unzip_fuzzer.c b/test/fuzz/unzip_fuzzer.c index d2a7086..a4ed1b7 100644 --- a/test/fuzz/unzip_fuzzer.c +++ b/test/fuzz/unzip_fuzzer.c @@ -1,5 +1,5 @@ /* unzip_fuzzer.c - Unzip fuzzer for libFuzzer - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2018 The Chromium Authors diff --git a/test/fuzz/zip_fuzzer.c b/test/fuzz/zip_fuzzer.c index 37ec31e..f8ac7e2 100644 --- a/test/fuzz/zip_fuzzer.c +++ b/test/fuzz/zip_fuzzer.c @@ -1,5 +1,5 @@ /* zip_fuzzer.c - Zip fuzzer for libFuzzer - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2018 The Chromium Authors diff --git a/test/test.c b/test/test.c index 7eac9e8..96e3829 100644 --- a/test/test.c +++ b/test/test.c @@ -1,5 +1,5 @@ /* test.c - Test bed area - Version 2.8.2, January 8, 2019 + Version 2.8.3, January 26, 2019 part of the MiniZip project Copyright (C) 2018-2019 Nathan Moinvaziri