Skip to content

Commit

Permalink
Update libzip and zlib submodules (#115)
Browse files Browse the repository at this point in the history
Context: https://libzip.org/news/release-1.9.0.html
Context: https://libzip.org/news/release-1.9.1.html
Context: https://libzip.org/news/release-1.9.2.html
Context: https://zlib.net/ChangeLog.txt

`libzip` updated to v1.9.2, changes:

   * Add zip_file_is_seekable().
   * Improve compatibility with WinAES.
   * Fix encoding handling in zip_name_locate().
   * Add option to zipcmp to output summary of changes.
   * Various bug fixes and documentation improvements.

`zlib` updated to v1.2.12, changes:

   * Fix a deflate bug when using the Z_FIXED strategy that can result
     in out-of-bound accesses.
   * Fix a deflate bug when the window is full in deflate_stored().
   * Speed up CRC-32 computations by a factor of 1.5 to 3.
   * Use the hardware CRC-32 instruction on ARMv8 processors.
   * Speed up crc32_combine() with powers of x tables.
   * Add crc32_combine_gen() and crc32_combine_op() for fast combines
  • Loading branch information
grendello authored Aug 17, 2022
1 parent acd9a54 commit 6c0edc5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
branch = develop
[submodule "external/bzip2"]
path = external/bzip2
url = git://sourceware.org/git/bzip2.git
url = https://sourceware.org/git/bzip2.git
branch = master
[submodule "external/xz"]
path = external/xz
Expand Down
2 changes: 1 addition & 1 deletion LibZipSharp.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LibZipSharpAssemblyVersion>2.0.5</_LibZipSharpAssemblyVersion>
<_LibZipSharpAssemblyVersion>2.0.6</_LibZipSharpAssemblyVersion>
<!--
Nuget Version. You can append things like -alpha-1 etc to this value.
But always leave the $(_LibZipSharpAssemblyVersion) value at the start.
Expand Down
2 changes: 1 addition & 1 deletion external/libzip
Submodule libzip updated 237 files
2 changes: 1 addition & 1 deletion external/zlib
Submodule zlib updated 86 files
+1 −1 CMakeLists.txt
+112 −49 ChangeLog
+8 −10 Makefile.in
+7 −4 README
+27 −21 configure
+0 −21 contrib/README.contrib
+0 −452 contrib/amd64/amd64-match.S
+0 −51 contrib/asm686/README.686
+0 −357 contrib/asm686/match.S
+1 −1 contrib/blast/blast.h
+1 −1 contrib/delphi/ZLib.pas
+1 −1 contrib/dotzlib/DotZLib/UnitTests.cs
+3 −3 contrib/infback9/inftree9.c
+0 −1,157 contrib/inflate86/inffas86.c
+0 −1,368 contrib/inflate86/inffast.S
+0 −2 contrib/masmx64/bld_ml64.bat
+0 −553 contrib/masmx64/gvmat64.asm
+0 −186 contrib/masmx64/inffas8664.c
+0 −396 contrib/masmx64/inffasx64.asm
+0 −31 contrib/masmx64/readme.txt
+0 −2 contrib/masmx86/bld_ml32.bat
+0 −1,080 contrib/masmx86/inffas32.asm
+0 −479 contrib/masmx86/match686.asm
+0 −27 contrib/masmx86/readme.txt
+8 −4 contrib/minizip/Makefile
+1 −1 contrib/minizip/configure.ac
+10 −9 contrib/minizip/crypt.h
+14 −4 contrib/minizip/ioapi.c
+5 −3 contrib/minizip/ioapi.h
+17 −18 contrib/minizip/miniunz.c
+21 −20 contrib/minizip/minizip.c
+17 −14 contrib/minizip/unzip.c
+6 −6 contrib/minizip/unzip.h
+18 −18 contrib/minizip/zip.c
+11 −6 contrib/minizip/zip.h
+1 −1 contrib/pascal/zlibpas.pas
+1 −1 contrib/vstudio/readme.txt
+4 −4 contrib/vstudio/vc10/zlib.rc
+5 −0 contrib/vstudio/vc10/zlibvc.def
+4 −4 contrib/vstudio/vc11/zlib.rc
+5 −0 contrib/vstudio/vc11/zlibvc.def
+4 −4 contrib/vstudio/vc12/zlib.rc
+5 −0 contrib/vstudio/vc12/zlibvc.def
+4 −4 contrib/vstudio/vc14/zlib.rc
+5 −0 contrib/vstudio/vc14/zlibvc.def
+4 −4 contrib/vstudio/vc9/zlib.rc
+5 −0 contrib/vstudio/vc9/zlibvc.def
+966 −292 crc32.c
+9,441 −436 crc32.h
+78 −30 deflate.c
+12 −15 deflate.h
+ doc/crc-doc.1.0.pdf
+6 −6 doc/txtvsbin.txt
+5 −0 examples/README.examples
+385 −360 examples/enough.c
+1 −1 examples/gzappend.c
+4 −2 examples/gzlog.c
+470 −0 examples/gznorm.c
+163 −93 examples/zran.c
+40 −0 examples/zran.h
+3 −2 gzguts.h
+5 −3 gzlib.c
+5 −7 gzread.c
+25 −13 gzwrite.c
+2 −1 infback.c
+14 −14 inffast.c
+39 −8 inflate.c
+3 −2 inflate.h
+3 −3 inftrees.c
+1 −1 os400/README400
+3 −3 os400/zlib.inc
+5 −5 qnx/package.qpg
+2 −3 test/example.c
+2 −2 treebuild.xml
+27 −48 trees.c
+0 −1 win32/Makefile.bor
+0 −5 win32/Makefile.gcc
+0 −4 win32/Makefile.msc
+2 −2 win32/README-WIN32.txt
+3 −0 win32/zlib.def
+3 −3 zlib.3
+ zlib.3.pdf
+123 −100 zlib.h
+6 −0 zlib.map
+2 −2 zutil.c
+12 −9 zutil.h

0 comments on commit 6c0edc5

Please sign in to comment.