From b2b082c67dfc45edce7f16213c322379ecc583bc Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Tue, 13 Nov 2018 15:22:15 -0800 Subject: [PATCH] Version 2.7.5. --- 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 +- 47 files changed, 48 insertions(+), 48 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f6da2e..3e6c309 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ set(INSTALL_PKGCONFIG_DIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig CACHE PATH "Installa set(INSTALL_CMAKE_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/minizip CACHE PATH "Installation directory for cmake files.") # Minizip library version -set(VERSION "2.7.4") +set(VERSION "2.7.5") # Minizip api version set(SOVERSION "2.5") diff --git a/Minizip.podspec b/Minizip.podspec index 4d28016..bfebb14 100644 --- a/Minizip.podspec +++ b/Minizip.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Minizip' - s.version = '2.7.4' + s.version = '2.7.5' 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 445af63..08a6ecd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# minizip 2.7.4 +# minizip 2.7.5 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 cbc0d11..3585764 100644 --- a/minizip.c +++ b/minizip.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz.h b/mz.h index 1b1c7ff..f972f82 100644 --- a/mz.h +++ b/mz.h @@ -1,5 +1,5 @@ /* mz.h -- Errors codes, zip flags and magic - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri @@ -19,7 +19,7 @@ extern "C" { /***************************************************************************/ // MZ_VERSION -#define MZ_VERSION ("2.7.4") +#define MZ_VERSION ("2.7.5") // MZ_ERROR #define MZ_OK (0) // zlib diff --git a/mz_compat.c b/mz_compat.c index 2c3baab..dd91d02 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -1,5 +1,5 @@ /* mz_compat.c -- Backwards compatible interface for older versions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_compat.h b/mz_compat.h index 1f751ec..3217ff8 100644 --- a/mz_compat.h +++ b/mz_compat.h @@ -1,5 +1,5 @@ /* mz_compat.h -- Backwards compatible interface for older versions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt.c b/mz_crypt.c index da5b431..dcd7583 100644 --- a/mz_crypt.c +++ b/mz_crypt.c @@ -1,5 +1,5 @@ /* mz_crypt.c -- Crypto/hash functions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt.h b/mz_crypt.h index 1c99389..84ddd7d 100644 --- a/mz_crypt.h +++ b/mz_crypt.h @@ -1,5 +1,5 @@ /* mz_crypt.h -- Crypto/hash functions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt_apple.c b/mz_crypt_apple.c index f912806..0a2fb33 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt_brg.c b/mz_crypt_brg.c index 9b39660..959af8f 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt_openssl.c b/mz_crypt_openssl.c index 1cc721c..628b921 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_crypt_win32.c b/mz_crypt_win32.c index a9ad6b0..9c254ef 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.c b/mz_os.c index 9795781..a78d8fc 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,5 +1,5 @@ /* mz_os.c -- System functions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.h b/mz_os.h index 45711bd..d3a82fc 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,5 +1,5 @@ /* mz_os.h -- System functions - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os_posix.c b/mz_os_posix.c index 4c01f6a..40ce42c 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os_win32.c b/mz_os_win32.c index 78036c2..9610c63 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.c b/mz_strm.c index 119e00d..9bfcab1 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,5 +1,5 @@ /* mz_strm.c -- Stream interface - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.h b/mz_strm.h index 6157042..bb953c9 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,5 +1,5 @@ /* mz_strm.h -- Stream interface - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_buf.c b/mz_strm_buf.c index 475a6c4..b800555 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 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 d820abb..40cc9e5 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 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 2f7f0c0..b2618f2 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_bzip.h b/mz_strm_bzip.h index 340b92d..5646d59 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_libcomp.c b/mz_strm_libcomp.c index 6f47d3d..dbec8ed 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_libcomp.h b/mz_strm_libcomp.h index e2e7f8e..fb673fe 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_lzma.c b/mz_strm_lzma.c index 58adb23..f122889 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_lzma.h b/mz_strm_lzma.h index e8a74b6..443cd99 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_mem.c b/mz_strm_mem.c index 646df19..c061027 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 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 d0cfabc..947fb73 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_os.h b/mz_strm_os.h index 8c0004a..7ef8d67 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_os_posix.c b/mz_strm_os_posix.c index 1face6c..50b7808 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_os_win32.c b/mz_strm_os_win32.c index 0dfc1ad..1daffbc 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_pkcrypt.c b/mz_strm_pkcrypt.c index 438974f..9dcb03c 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_pkcrypt.h b/mz_strm_pkcrypt.h index 27811a4..3fa8b1b 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_split.c b/mz_strm_split.c index 0d0e334..54fe8a1 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_split.h b/mz_strm_split.h index 6550c70..bd4755b 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_wzaes.c b/mz_strm_wzaes.c index 8423de4..1bb2702 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_wzaes.h b/mz_strm_wzaes.h index 0716110..475eb1c 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_zlib.c b/mz_strm_zlib.c index 3e1ec73..a52a9e5 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_zlib.h b/mz_strm_zlib.h index db20769..7aab282 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.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.c b/mz_zip.c index 1c07aac..4961f66 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,5 +1,5 @@ /* zip.c -- Zip manipulation - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.h b/mz_zip.h index da3c739..2c729bc 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,5 +1,5 @@ /* mz_zip.h -- Zip manipulation - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip_rw.c b/mz_zip_rw.c index ab77b60..aba9a69 100644 --- a/mz_zip_rw.c +++ b/mz_zip_rw.c @@ -1,5 +1,5 @@ /* mz_zip_rw.c -- Zip reader/writer - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip_rw.h b/mz_zip_rw.h index de3b68d..94de49d 100644 --- a/mz_zip_rw.h +++ b/mz_zip_rw.h @@ -1,5 +1,5 @@ /* mz_zip_rw.h -- Zip reader/writer - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/test/fuzz/standalone.c b/test/fuzz/standalone.c index 3238086..8c9179d 100644 --- a/test/fuzz/standalone.c +++ b/test/fuzz/standalone.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2018 sebpop diff --git a/test/fuzz/unzip_fuzzer.c b/test/fuzz/unzip_fuzzer.c index b8ea174..168bd7f 100644 --- a/test/fuzz/unzip_fuzzer.c +++ b/test/fuzz/unzip_fuzzer.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 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 f489f5d..721ada8 100644 --- a/test/fuzz/zip_fuzzer.c +++ b/test/fuzz/zip_fuzzer.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.7.4, November 6, 2018 + Version 2.7.5, November 13, 2018 part of the MiniZip project Copyright (C) 2018 The Chromium Authors