Skip to content

Commit

Permalink
A round of library version updates (#131)
Browse files Browse the repository at this point in the history
Changes: https://libzip.org/news/release-1.10.0.html
Changes: https://libzip.org/news/release-1.10.1.html
Changes: https://zlib.net/ChangeLog.txt
Changes: https://github.com/facebook/zstd/releases/tag/v1.5.4
Changes: https://github.com/facebook/zstd/releases/tag/v1.5.5

  * libzip updated to v1.10.1 (from v1.9.2 via 1.10.0)
    A handful of API changes not important to us, fixes for handling
    very large ZIP archives and buffers, use ISO C secure library
    functions.
  * zlib updated to v1.3.0 (from v1.2.13)
    Changes which mostly affect the gzip compression, not used by
    libzip.
  * zstd updated to v1.5.5 (from v1.5.2, via v1.5.4)
    v1.5.4 is mostly a performance improvement release, see the URL
    above for details. v1.5.5 is a quickfix release addressing a
    rare corruption bug in high compression mode, plus more performance
    improvements.
  • Loading branch information
grendello authored Oct 11, 2023
1 parent 1a0f342 commit ed2ccd5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LibZipSharp.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LibZipSharpAssemblyVersionMajor>3</_LibZipSharpAssemblyVersionMajor>
<_LibZipSharpAssemblyVersionMinor>0</_LibZipSharpAssemblyVersionMinor>
<_LibZipSharpAssemblyVersionMinor>1</_LibZipSharpAssemblyVersionMinor>
<_LibZipSharpAssemblyVersionPatch>0</_LibZipSharpAssemblyVersionPatch>
<_LibZipSharpAssemblyVersion>$(_LibZipSharpAssemblyVersionMajor).$(_LibZipSharpAssemblyVersionMinor).$(_LibZipSharpAssemblyVersionPatch)</_LibZipSharpAssemblyVersion>
<_NativeLibraryVersionForName>$(_LibZipSharpAssemblyVersionMajor)-$(_LibZipSharpAssemblyVersionMinor)</_NativeLibraryVersionForName>
Expand Down
2 changes: 1 addition & 1 deletion external/libzip
Submodule libzip updated 625 files
2 changes: 1 addition & 1 deletion external/zlib
Submodule zlib updated 90 files
+1 −1 .github/workflows/cmake.yml
+1 −1 .github/workflows/configure.yml
+2 −2 CMakeLists.txt
+19 −1 ChangeLog
+1 −1 FAQ
+8 −2 Makefile.in
+9 −10 README
+5 −27 adler32.c
+5 −16 compress.c
+16 −10 configure
+2 −2 contrib/ada/readme.txt
+2 −2 contrib/ada/test.adb
+1 −1 contrib/ada/zlib-streams.ads
+1 −1 contrib/ada/zlib.adb
+1 −1 contrib/ada/zlib.ads
+1 −1 contrib/delphi/ZLib.pas
+1 −1 contrib/dotzlib/DotZLib/ChecksumImpl.cs
+2 −2 contrib/dotzlib/DotZLib/CodecBase.cs
+3 −3 contrib/dotzlib/DotZLib/GZipStream.cs
+1 −1 contrib/dotzlib/DotZLib/UnitTests.cs
+1 −1 contrib/dotzlib/readme.txt
+6 −18 contrib/infback9/infback9.c
+8 −8 contrib/infback9/infback9.h
+6 −11 contrib/infback9/inftree9.c
+3 −3 contrib/infback9/inftree9.h
+1 −1 contrib/minizip/MiniZip64_Changes.txt
+1 −1 contrib/minizip/configure.ac
+4 −8 contrib/minizip/crypt.h
+18 −44 contrib/minizip/ioapi.c
+18 −18 contrib/minizip/ioapi.h
+19 −46 contrib/minizip/iowin32.c
+4 −4 contrib/minizip/iowin32.h
+22 −48 contrib/minizip/miniunz.c
+24 −36 contrib/minizip/minizip.c
+1 −7 contrib/minizip/mztools.c
+185 −330 contrib/minizip/unzip.c
+68 −68 contrib/minizip/unzip.h
+129 −186 contrib/minizip/zip.c
+148 −151 contrib/minizip/zip.h
+1 −1 contrib/pascal/zlibpas.pas
+1 −1 contrib/testzlib/testzlib.c
+28 −35 contrib/untgz/untgz.c
+1 −1 contrib/vstudio/readme.txt
+4 −4 contrib/vstudio/vc10/zlib.rc
+1 −1 contrib/vstudio/vc10/zlibvc.def
+4 −4 contrib/vstudio/vc11/zlib.rc
+1 −1 contrib/vstudio/vc11/zlibvc.def
+4 −4 contrib/vstudio/vc12/zlib.rc
+1 −1 contrib/vstudio/vc12/zlibvc.def
+4 −4 contrib/vstudio/vc14/zlib.rc
+1 −1 contrib/vstudio/vc14/zlibvc.def
+4 −4 contrib/vstudio/vc9/zlib.rc
+1 −1 contrib/vstudio/vc9/zlibvc.def
+86 −162 crc32.c
+233 −336 deflate.c
+8 −8 deflate.h
+1 −1 examples/fitblk.c
+15 −11 examples/zlib_how.html
+396 −342 examples/zran.c
+40 −29 examples/zran.h
+1 −3 gzclose.c
+11 −12 gzguts.h
+22 −79 gzlib.c
+20 −68 gzread.c
+19 −65 gzwrite.c
+7 −23 infback.c
+1 −4 inffast.c
+1 −1 inffast.h
+30 −99 inflate.c
+6 −11 inftrees.c
+3 −3 inftrees.h
+1 −1 os400/README400
+4 −4 os400/zlib.inc
+5 −5 qnx/package.qpg
+23 −80 test/example.c
+3 −2 test/infcover.c
+50 −122 test/minigzip.c
+2 −2 treebuild.xml
+224 −302 trees.c
+4 −12 uncompr.c
+2 −2 win32/README-WIN32.txt
+6 −2 zconf.h
+6 −2 zconf.h.cmakein
+6 −2 zconf.h.in
+3 −3 zlib.3
+ zlib.3.pdf
+191 −188 zlib.h
+0 −152 zlib2ansi
+16 −44 zutil.c
+10 −10 zutil.h
2 changes: 1 addition & 1 deletion external/zstd
Submodule zstd updated 492 files

0 comments on commit ed2ccd5

Please sign in to comment.