Skip to content

Commit

Permalink
Merge pull request #232 from folkertdev/zlib-ng-2.2.3
Browse files Browse the repository at this point in the history
bump `zlib-ng` to version `2.2.3`
  • Loading branch information
Byron authored Jan 7, 2025
2 parents 223f565 + 5fb9de4 commit 53d98ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libz-sys"
version = "1.1.20"
version = "1.1.21"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Josh Triplett <josh@joshtriplett.org>",
Expand Down
2 changes: 1 addition & 1 deletion src/zlib-ng
Submodule zlib-ng updated 82 files
+4 −4 .github/workflows/cmake.yml
+2 −0 .github/workflows/nmake.yml
+1 −1 .github/workflows/pigz.yml
+3 −6 .github/workflows/pkgcheck.yml
+8 −0 .gitignore
+28 −21 CMakeLists.txt
+1 −1 Makefile.in
+1 −2 README.md
+2 −2 arch/arm/arm_functions.h
+4 −11 arch/arm/chunkset_neon.c
+1 −1 arch/arm/compare256_neon.c
+20 −22 arch/arm/crc32_acle.c
+2 −2 arch/generic/Makefile.in
+6 −6 arch/generic/chunkset_c.c
+15 −165 arch/generic/compare256_c.c
+123 −0 arch/generic/compare256_p.h
+4 −53 arch/generic/generic_functions.h
+4 −9 arch/power/chunkset_power8.c
+1 −1 arch/power/compare256_power9.c
+1 −1 arch/power/power_functions.h
+7 −3 arch/riscv/adler32_rvv.c
+1 −1 arch/riscv/compare256_rvv.c
+1 −1 arch/riscv/riscv_functions.h
+21 −33 arch/s390/README.md
+58 −0 arch/s390/self-hosted-builder/actions-runner
+43 −0 arch/s390/self-hosted-builder/actions-runner-rebuild.sh
+7 −9 arch/s390/self-hosted-builder/actions-runner.Dockerfile
+2 −2 arch/s390/self-hosted-builder/actions-runner.service
+0 −0 arch/s390/self-hosted-builder/entrypoint
+0 −40 arch/s390/self-hosted-builder/fs/usr/bin/actions-runner
+0 −5 arch/s390/self-hosted-builder/runner-global.json
+0 −243 arch/s390/self-hosted-builder/runner-s390x.patch
+10 −3 arch/x86/Makefile.in
+44 −0 arch/x86/avx2_tables.h
+41 −50 arch/x86/chunkset_avx2.c
+172 −0 arch/x86/chunkset_avx512.c
+4 −11 arch/x86/chunkset_sse2.c
+4 −11 arch/x86/chunkset_ssse3.c
+1 −1 arch/x86/compare256_avx2.c
+1 −1 arch/x86/compare256_sse2.c
+3 −1 arch/x86/x86_features.c
+1 −0 arch/x86/x86_features.h
+12 −3 arch/x86/x86_functions.h
+129 −46 chunkset_tpl.h
+1 −1 cmake/detect-arch.c
+6 −6 cmake/detect-intrinsics.cmake
+1 −10 cmake/detect-sanitizer.cmake
+28 −29 compare256_rle.h
+7 −16 configure
+6 −5 deflate.h
+1 −1 deflate_quick.c
+8 −10 deflate_rle.c
+13 −6 functable.c
+1 −1 functable.h
+7 −2 infback.c
+28 −23 inffast_tpl.h
+20 −11 inflate.c
+25 −18 inflate.h
+9 −25 inflate_p.h
+6 −13 insert_string_tpl.h
+14 −48 match_tpl.h
+4 −7 test/CMakeLists.txt
+1 −1 test/add-subdirectory-project/CMakeLists.txt
+9 −3 test/benchmarks/CMakeLists.txt
+8 −9 test/benchmarks/benchmark_compare256.cc
+6 −9 test/benchmarks/benchmark_compare256_rle.cc
+1 −1 test/fuzz/CMakeLists.txt
+1 −1 test/infcover.c
+5 −2 test/pkgcheck.sh
+8 −9 test/test_compare256.cc
+6 −9 test/test_compare256_rle.cc
+1 −1 test/test_compress_bound.cc
+34 −0 test/test_crc32.cc
+2 −2 win32/Makefile.a64
+2 −2 win32/Makefile.arm
+4 −4 win32/Makefile.msc
+32 −16 zbuild.h
+4 −4 zlib-ng.h.in
+4 −4 zlib.h.in
+99 −0 zmemory.h
+1 −1 zutil.c
+0 −29 zutil_p.h

0 comments on commit 53d98ee

Please sign in to comment.