diff --git a/CMakeLists.txt b/CMakeLists.txt index ac83bc9..4fc0c94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,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.5.1") +set(VERSION "2.5.2") # Minizip api version set(SOVERSION "2.5") diff --git a/Minizip.podspec b/Minizip.podspec index 3625c24..81d1091 100644 --- a/Minizip.podspec +++ b/Minizip.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Minizip' - s.version = '2.5.1' + s.version = '2.5.2' 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 477a6a2..fb29a17 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Minizip 2.5.1 +# Minizip 2.5.2 This library is a refactoring of the minizip contribution found in the zlib distribution and is supported on Windows, macOS, and Linux. The motivation for this work has been the inclusion of advanced features, improvements in code maintainability and readability, and the reduction of duplicate code. It is based on the original work of [Gilles Vollant](http://www.winimage.com/zLibDll/minizip.html) that has been contributed to by many people over the years. diff --git a/minizip.c b/minizip.c index 4aeee07..e768948 100644 --- a/minizip.c +++ b/minizip.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz.h b/mz.h index fa43c67..cf22a45 100644 --- a/mz.h +++ b/mz.h @@ -1,5 +1,5 @@ /* mz.h -- Errors codes, zip flags and magic - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri @@ -19,7 +19,7 @@ extern "C" { /***************************************************************************/ // MZ_VERSION -#define MZ_VERSION ("2.5.1") +#define MZ_VERSION ("2.5.2") // MZ_ERROR #define MZ_OK (0) // zlib diff --git a/mz_compat.c b/mz_compat.c index aec9191..fa4ea72 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -1,5 +1,5 @@ /* mz_compat.c -- Backwards compatible interface for older versions - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_compat.h b/mz_compat.h index e652460..b2bfa9d 100644 --- a/mz_compat.h +++ b/mz_compat.h @@ -1,5 +1,5 @@ /* mz_compat.h -- Backwards compatible interface for older versions - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.c b/mz_os.c index c01681e..673a02c 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,5 +1,5 @@ /* mz_os.c -- System functions - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.h b/mz_os.h index 6a1c37c..2f3a5b3 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,5 +1,5 @@ /* mz_os.h -- System functions - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 2c4ecc3..7528bd8 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os_posix.h b/mz_os_posix.h index 7ab3a16..9d693d9 100644 --- a/mz_os_posix.h +++ b/mz_os_posix.h @@ -1,5 +1,5 @@ /* mz_os_posix.h -- System functions for posix - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 b8d50e8..5a5fc47 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os_win32.h b/mz_os_win32.h index 6ecac8c..d4b7a4d 100644 --- a/mz_os_win32.h +++ b/mz_os_win32.h @@ -1,5 +1,5 @@ /* mz_os_win32.h -- System functions for Windows - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.c b/mz_strm.c index 44b3b38..fbff428 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,5 +1,5 @@ /* mz_strm.c -- Stream interface - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.h b/mz_strm.h index fb7c7c0..b33e245 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,5 +1,5 @@ /* mz_strm.h -- Stream interface - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_aes.c b/mz_strm_aes.c index c18da11..dc2ce6e 100644 --- a/mz_strm_aes.c +++ b/mz_strm_aes.c @@ -1,5 +1,5 @@ /* mz_strm_aes.c -- Stream for WinZip AES encryption - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_aes.h b/mz_strm_aes.h index b9b5662..181b32a 100644 --- a/mz_strm_aes.h +++ b/mz_strm_aes.h @@ -1,5 +1,5 @@ /* mz_strm_aes.h -- Stream for WinZIP AES encryption - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 7a3bd02..9d581d7 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 dae318d..7c092d1 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 1fc8961..5bda3b9 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 71fad51..2b68dce 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_crc32.c b/mz_strm_crc32.c index c4100d2..7541ff5 100644 --- a/mz_strm_crc32.c +++ b/mz_strm_crc32.c @@ -1,5 +1,5 @@ /* mz_strm_crc32.c -- Stream for CRC32 hashing - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_crc32.h b/mz_strm_crc32.h index 66f2aa9..1570939 100644 --- a/mz_strm_crc32.h +++ b/mz_strm_crc32.h @@ -1,5 +1,5 @@ /* mz_strm_crc32.h -- Stream for CRC32 hashing - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 9100fcf..21a9797 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 cb9d1ec..4f37237 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 f7f267d..60d7787 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 3f0f6e6..198e1a1 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_pkcrypt.c b/mz_strm_pkcrypt.c index bc72f81..99c8195 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 160e88d..bc120a2 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_posix.c b/mz_strm_posix.c index 951a7bb..21116f5 100644 --- a/mz_strm_posix.c +++ b/mz_strm_posix.c @@ -1,5 +1,5 @@ /* mz_strm_posix.c -- Stream for filesystem access for posix/linux - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_posix.h b/mz_strm_posix.h index e582f25..b1fe92c 100644 --- a/mz_strm_posix.h +++ b/mz_strm_posix.h @@ -1,5 +1,5 @@ /* mz_strm_posix.h -- Stream for filesystem access for posix/linux - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 4aaaf10..ce22521 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 54d4f10..dbaef58 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_win32.c b/mz_strm_win32.c index 249f498..7a62782 100644 --- a/mz_strm_win32.c +++ b/mz_strm_win32.c @@ -1,5 +1,5 @@ /* mz_strm_win32.c -- Stream for filesystem access for windows - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_win32.h b/mz_strm_win32.h index 8172e2f..59f6061 100644 --- a/mz_strm_win32.h +++ b/mz_strm_win32.h @@ -1,5 +1,5 @@ /* mz_sstrm_win32.h -- Stream for filesystem access for windows - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 3b0da31..bd27472 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 2bda885..31fb6f1 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.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.c b/mz_zip.c index 436f1bd..19858a5 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,5 +1,5 @@ /* zip.c -- Zip manipulation - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.h b/mz_zip.h index 98168cd..d38ac08 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,5 +1,5 @@ /* mz_zip.h -- Zip manipulation - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 2bef6ca..2462c03 100644 --- a/mz_zip_rw.c +++ b/mz_zip_rw.c @@ -1,5 +1,5 @@ /* mz_zip_rw.c -- Zip reader/writer - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 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 0b9ebf1..f787f0d 100644 --- a/mz_zip_rw.h +++ b/mz_zip_rw.h @@ -1,5 +1,5 @@ /* mz_zip_rw.h -- Zip reader/writer - Version 2.5.1, August 18, 2018 + Version 2.5.2, August 27, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri