From a4b83e8e9582f85441b2e3a82cb9b6054aa34201 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Thu, 3 May 2018 17:59:04 -0700 Subject: [PATCH] Version 2.3.0. --- CMakeLists.txt | 2 +- Minizip.podspec | 2 +- README.md | 2 +- minizip.c | 2 +- mz.h | 4 ++-- mz_compat.c | 2 +- mz_compat.h | 2 +- mz_os.c | 2 +- mz_os.h | 2 +- mz_os_posix.c | 2 +- mz_os_posix.h | 2 +- mz_os_win32.c | 2 +- mz_os_win32.h | 2 +- mz_strm.c | 2 +- mz_strm.h | 2 +- mz_strm_aes.c | 2 +- mz_strm_aes.h | 2 +- mz_strm_buf.c | 2 +- mz_strm_buf.h | 2 +- mz_strm_bzip.c | 2 +- mz_strm_bzip.h | 2 +- mz_strm_crypt.c | 2 +- mz_strm_crypt.h | 2 +- mz_strm_lzma.c | 2 +- mz_strm_lzma.h | 2 +- mz_strm_mem.c | 2 +- mz_strm_mem.h | 2 +- mz_strm_posix.c | 2 +- mz_strm_posix.h | 2 +- mz_strm_split.c | 2 +- mz_strm_split.h | 2 +- mz_strm_win32.c | 2 +- mz_strm_win32.h | 2 +- mz_strm_zlib.c | 2 +- mz_strm_zlib.h | 2 +- mz_zip.c | 2 +- mz_zip.h | 2 +- 37 files changed, 38 insertions(+), 38 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 01d9252..7e60c96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ set(INSTALL_MAN_DIR ${CMAKE_INSTALL_MANDIR} CACHE PATH "Installation directory f set(INSTALL_PKGCONFIG_DIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig CACHE PATH "Installation directory for pkgconfig (.pc) files") set(INSTALL_CMAKE_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/minizip CACHE PATH "Installation directory for cmake files.") -set(VERSION "2.2.9") +set(VERSION "2.3.0") # Set cmake debug postfix to d set(CMAKE_DEBUG_POSTFIX "d") diff --git a/Minizip.podspec b/Minizip.podspec index eae0379..61d6321 100644 --- a/Minizip.podspec +++ b/Minizip.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Minizip' - s.version = '2.2.9' + s.version = '2.3.0' 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 6fca1ed..0ab1db9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Minizip 2.2.9 +# Minizip 2.3.0 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 1b4f41f..48030dc 100644 --- a/minizip.c +++ b/minizip.c @@ -1,5 +1,5 @@ /* minizip.c - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz.h b/mz.h index 1bc67e5..17e6a93 100644 --- a/mz.h +++ b/mz.h @@ -1,5 +1,5 @@ /* mz.h -- Errors codes, zip flags and magic - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri @@ -19,7 +19,7 @@ extern "C" { /***************************************************************************/ // MZ_VERSION -#define MZ_VERSION ("2.2.9") +#define MZ_VERSION ("2.3.0") // MZ_ERROR #define MZ_OK (0) diff --git a/mz_compat.c b/mz_compat.c index c9eee00..a850393 100644 --- a/mz_compat.c +++ b/mz_compat.c @@ -1,5 +1,5 @@ /* mz_compat.c -- Backwards compatible interface for older versions - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_compat.h b/mz_compat.h index 37c3abe..14ab3f9 100644 --- a/mz_compat.h +++ b/mz_compat.h @@ -1,5 +1,5 @@ /* mz_compat.h -- Backwards compatible interface for older versions - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.c b/mz_os.c index 822f832..a188e68 100644 --- a/mz_os.c +++ b/mz_os.c @@ -1,5 +1,5 @@ /* mz_os.c -- System functions - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_os.h b/mz_os.h index 903cc67..f8ae453 100644 --- a/mz_os.h +++ b/mz_os.h @@ -1,5 +1,5 @@ /* mz_os.h -- System functions - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 e4197b0..87ad3cd 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 a56ce23..ecd5a68 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 f4fd655..ad147e2 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 cce3654..0fe0827 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.c b/mz_strm.c index 829cc3a..180fb6e 100644 --- a/mz_strm.c +++ b/mz_strm.c @@ -1,5 +1,5 @@ /* mz_strm.c -- Stream interface - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm.h b/mz_strm.h index 4af2927..2adc804 100644 --- a/mz_strm.h +++ b/mz_strm.h @@ -1,5 +1,5 @@ /* mz_strm.h -- Stream interface - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 6605c0f..b9668ea 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 98283c3..07ea473 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 f627bed..6a4b772 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 16cd970..4c2ce23 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 ce60174..97dd1c5 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 8e3cb45..c40af8e 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_crypt.c b/mz_strm_crypt.c index 5f8b34d..eb3c5b3 100644 --- a/mz_strm_crypt.c +++ b/mz_strm_crypt.c @@ -1,5 +1,5 @@ /* mz_strm_crypt.c -- Code for traditional PKWARE encryption - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_crypt.h b/mz_strm_crypt.h index 71613c1..5d4666f 100644 --- a/mz_strm_crypt.h +++ b/mz_strm_crypt.h @@ -1,5 +1,5 @@ /* mz_strm_crypt.h -- Code for traditional PKWARE encryption - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 72e9c35..6da877a 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 6f01aed..7a9bf9e 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 08fe26f..3551129 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 9ddccfe..4dc8f47 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_posix.c b/mz_strm_posix.c index f86542a..440d985 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 484ec54..91dae21 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 4b4d5f2..7921f7a 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 7bfacee..db7b63e 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_strm_win32.c b/mz_strm_win32.c index 51c2e73..e94964b 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 10cf855..95fd2d3 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 9fd6d58..b4eadfb 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 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 bca703f..5cc8e20 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.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.c b/mz_zip.c index 2bef9a6..675b826 100644 --- a/mz_zip.c +++ b/mz_zip.c @@ -1,5 +1,5 @@ /* zip.c -- Zip manipulation - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri diff --git a/mz_zip.h b/mz_zip.h index e780e1f..6b17ed7 100644 --- a/mz_zip.h +++ b/mz_zip.h @@ -1,5 +1,5 @@ /* mz_zip.h -- Zip manipulation - Version 2.2.9, April 18th, 2018 + Version 2.3.0, May 3rd, 2018 part of the MiniZip project Copyright (C) 2010-2018 Nathan Moinvaziri