Skip to content

Commit

Permalink
Version 2.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Sep 18, 2019
1 parent cc3aa21 commit 10ac291
Show file tree
Hide file tree
Showing 49 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ endif()
enable_language(C)

# Minizip library version
set(VERSION "2.8.9")
set(VERSION "2.9.0")

# Minizip api version
set(SOVERSION "2.5")
Expand Down
2 changes: 1 addition & 1 deletion Minizip.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Minizip'
s.version = '2.8.9'
s.version = '2.9.0'
s.license = 'zlib'
s.summary = 'Minizip contrib in zlib with the latest bug fixes and advanced features'
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# minizip 2.8.9
# minizip 2.9.0

minizip is a zip manipulation library written in C that is supported on Windows, macOS, and Linux.

Expand Down
2 changes: 1 addition & 1 deletion minigzip.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* minigzip.c
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion minizip.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* minizip.c
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
4 changes: 2 additions & 2 deletions mz.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz.h -- Errors codes, zip flags and magic
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand All @@ -15,7 +15,7 @@
/***************************************************************************/

/* MZ_VERSION */
#define MZ_VERSION ("2.8.9")
#define MZ_VERSION ("2.9.0")

/* MZ_ERROR */
#define MZ_OK (0) /* zlib */
Expand Down
2 changes: 1 addition & 1 deletion mz_compat.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_compat.c -- Backwards compatible interface for older versions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_compat.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_compat.h -- Backwards compatible interface for older versions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt.c -- Crypto/hash functions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt.h -- Crypto/hash functions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt_apple.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt_apple.c -- Crypto/hash functions for Apple
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt_brg.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt_brg.c -- Crypto/hash functions using Brian Gladman's library
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt_openssl.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt_openssl.c -- Crypto/hash functions for OpenSSL
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_crypt_win32.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_crypt_win32.c -- Crypto/hash functions for Windows
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_os.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_os.c -- System functions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_os.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_os.h -- System functions
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_os_posix.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_os_posix.c -- System functions for posix
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_os_win32.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_os_win32.c -- System functions for Windows
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm.c -- Stream interface
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm.h -- Stream interface
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_buf.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_buf.c -- Stream for buffering reads/writes
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
This version of ioapi is designed to buffer IO.
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_buf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_buf.h -- Stream for buffering reads/writes
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
This version of ioapi is designed to buffer IO.
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_bzip.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_bzip.c -- Stream for bzip inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_bzip.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_bzip.h -- Stream for bzip inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_libcomp.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_libcomp.c -- Stream for apple compression
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_libcomp.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_libcomp.h -- Stream for apple compression
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_lzma.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_lzma.c -- Stream for lzma inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_lzma.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_lzma.h -- Stream for lzma inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_mem.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_mem.c -- Stream for memory access
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
This interface is designed to access memory rather than files.
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_mem.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_mem.h -- Stream for memory access
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_os.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_sstrm_os.h -- Stream for filesystem access
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_os_posix.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_posix.c -- Stream for filesystem access for posix/linux
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_os_win32.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_win32.c -- Stream for filesystem access for windows
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_pkcrypt.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_pkcrypt.c -- Code for traditional PKWARE encryption
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_pkcrypt.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_pkcrypt.h -- Code for traditional PKWARE encryption
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_split.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_split.c -- Stream for split files
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_split.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_split.h -- Stream for split files
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_wzaes.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_wzaes.c -- Stream for WinZip AES encryption
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_wzaes.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_wzaes.h -- Stream for WinZIP AES encryption
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_zlib.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_zlib.c -- Stream for zlib inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_strm_zlib.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_strm_zlib.h -- Stream for zlib inflate/deflate
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_zip.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* zip.c -- Zip manipulation
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_zip.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_zip.h -- Zip manipulation
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_zip_rw.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_zip_rw.c -- Zip reader/writer
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion mz_zip_rw.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* mz_zip_rw.h -- Zip reader/writer
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2010-2019 Nathan Moinvaziri
Expand Down
2 changes: 1 addition & 1 deletion test/fuzz/standalone.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* standalone.c - Standalone fuzzer tester
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2018 sebpop
Expand Down
2 changes: 1 addition & 1 deletion test/fuzz/unzip_fuzzer.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* unzip_fuzzer.c - Unzip fuzzer for libFuzzer
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2018 The Chromium Authors
Expand Down
2 changes: 1 addition & 1 deletion test/fuzz/zip_fuzzer.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* zip_fuzzer.c - Zip fuzzer for libFuzzer
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2018 The Chromium Authors
Expand Down
4 changes: 2 additions & 2 deletions test/test.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* test.c - Test bed area
Version 2.8.9, July 4, 2019
Version 2.9.0, September 18, 2019
part of the MiniZip project
Copyright (C) 2018-2019 Nathan Moinvaziri
Expand Down Expand Up @@ -41,7 +41,7 @@ void test_path_resolve_int(char *path, char *expected_path)
{
char output[256];
int32_t ok = 0;

memset(output, 'z', sizeof(output));
mz_path_resolve(path, output, sizeof(output));
ok = (strcmp(output, expected_path) == 0);
Expand Down

0 comments on commit 10ac291

Please sign in to comment.