From 4fe06872433fde80652e057d179d5d70a95e8294 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Mon, 8 Apr 2019 13:26:32 -0700 Subject: [PATCH] Version 2.8.6. --- 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 11ec7642..4754b0a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ endif() enable_language(C) # Minizip library version -set(VERSION "2.8.5") +set(VERSION "2.8.6") # Minizip api version set(SOVERSION "2.5") diff --git a/Minizip.podspec b/Minizip.podspec index c60c1f5c..cc264914 100644 --- a/Minizip.podspec +++ b/Minizip.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Minizip' - s.version = '2.8.5' + s.version = '2.8.6' 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 cab7148a..493443e9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# minizip 2.8.5 +# minizip 2.8.6 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 342dc4c3..e0a3cdba 100644 --- a/minizip.c +++ b/minizip.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz.h b/mz.h index 690bf671..1bb0398c 100644 --- a/mz.h +++ b/mz.h @@ -1,5 +1,5 @@ /* mz.h -- Errors codes, zip flags and magic - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri @@ -15,7 +15,7 @@ /***************************************************************************/ /* MZ_VERSION */ -#define MZ_VERSION ("2.8.5") +#define MZ_VERSION ("2.8.6") /* MZ_ERROR */ #define MZ_OK (0) /* zlib */ diff --git a/mz_compat.c b/mz_compat.c index 616f863f..a8de02ae 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_compat.h b/mz_compat.h index b38ea8b7..80332d7f 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt.c b/mz_crypt.c index dc9c7d13..adf23622 100644 --- a/mz_crypt.c +++ b/mz_crypt.c @@ -1,5 +1,5 @@ /* mz_crypt.c -- Crypto/hash functions - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_crypt.h b/mz_crypt.h index 255e996e..3f7a6b82 100644 --- a/mz_crypt.h +++ b/mz_crypt.h @@ -1,5 +1,5 @@ /* mz_crypt.h -- Crypto/hash functions - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 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 bff30615..bae9bc35 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 aaf362fa..b6b60da4 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 312d486c..76a59343 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 314c39bc..fcddb038 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os.c b/mz_os.c index e7785548..26e18684 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,5 +1,5 @@ /* mz_os.c -- System functions - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_os.h b/mz_os.h index da627d16..271d37ef 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,5 +1,5 @@ /* mz_os.h -- System functions - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 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 43504351..2d707baa 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 bcc55e68..3c708f16 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm.c b/mz_strm.c index 29e3bb61..f652c183 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,5 +1,5 @@ /* mz_strm.c -- Stream interface - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm.h b/mz_strm.h index f673a671..1ff06933 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,5 +1,5 @@ /* mz_strm.h -- Stream interface - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 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 5a56f3fb..2131baa2 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 bcc8a994..0be000be 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 cd93cb88..1e8e37a7 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 7c66624c..59a188b7 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 6dcddef9..d923aa21 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 445a91a9..6683b7b1 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 2a09cc5f..4c5ed760 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 06199624..997f57ca 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 70c09128..6e580a32 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 8af8df6e..3f66ca9b 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_os.h b/mz_strm_os.h index 069bb3f3..4158face 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 c2837523..21cef368 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 f1c35a93..17cf20ed 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 e4a0d122..59164ade 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 29da3dc8..e0a52c0e 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 7c00130b..97875739 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 fbd014c6..3b755012 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_strm_wzaes.c b/mz_strm_wzaes.c index ba389bdc..8bdddab2 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 9bf9c8c6..907b8a6d 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 59c605b8..87055f74 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 99e19edc..122c01b2 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip.c b/mz_zip.c index ea9fb556..240ad101 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,5 +1,5 @@ /* zip.c -- Zip manipulation - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2010-2019 Nathan Moinvaziri diff --git a/mz_zip.h b/mz_zip.h index c00d1edc..eb46989e 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,5 +1,5 @@ /* mz_zip.h -- Zip manipulation - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 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 0b9040c5..71f5789a 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 b967a2b5..c512f76d 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 84adb06f..ebfaad84 100644 --- a/test/fuzz/standalone.c +++ b/test/fuzz/standalone.c @@ -1,5 +1,5 @@ /* standalone.c - Standalone fuzzer tester - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 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 5e08d3d6..58dbb529 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.5, March 17, 2019 + Version 2.8.6, April 8, 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 e7b146d8..9c3bb993 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.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2018 The Chromium Authors diff --git a/test/test.c b/test/test.c index 56b0aa0f..c6c02b91 100644 --- a/test/test.c +++ b/test/test.c @@ -1,5 +1,5 @@ /* test.c - Test bed area - Version 2.8.5, March 17, 2019 + Version 2.8.6, April 8, 2019 part of the MiniZip project Copyright (C) 2018-2019 Nathan Moinvaziri