Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
feat: update to libdeflate v1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
gemesa committed Nov 21, 2024
1 parent c3e6a5f commit de9b517
Show file tree
Hide file tree
Showing 3 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
@@ -1,4 +1,4 @@
[submodule "libdeflate"]
path = libdeflate
url = git@github.com:ebiggers/libdeflate.git
branch = tags/v1.19
branch = tags/v1.22
2 changes: 1 addition & 1 deletion libdeflate
Submodule libdeflate updated 47 files
+2 −2 .cirrus.yml
+33 −19 .github/workflows/ci.yml
+2 −0 .gitignore
+52 −2 CMakeLists.txt
+1 −0 COPYING
+40 −0 NEWS.md
+34 −3 README.md
+38 −9 common_defs.h
+55 −23 lib/adler32.c
+0 −123 lib/adler32_vec_template.h
+258 −165 lib/arm/adler32_impl.h
+25 −7 lib/arm/cpu_features.c
+111 −162 lib/arm/cpu_features.h
+55 −130 lib/arm/crc32_impl.h
+6 −34 lib/arm/crc32_pmull_helpers.h
+8 −9 lib/arm/crc32_pmull_wide.h
+0 −1 lib/arm/matchfinder_impl.h
+1 −1 lib/crc32.c
+85 −37 lib/crc32_multipliers.h
+1 −1 lib/decompress_template.h
+2 −0 lib/deflate_compress.c
+10 −2 lib/lib_common.h
+28 −3 lib/matchfinder_common.h
+97 −0 lib/riscv/matchfinder_impl.h
+1 −1 lib/utils.c
+78 −229 lib/x86/adler32_impl.h
+518 −0 lib/x86/adler32_template.h
+66 −20 lib/x86/cpu_features.c
+89 −81 lib/x86/cpu_features.h
+107 −41 lib/x86/crc32_impl.h
+336 −195 lib/x86/crc32_pclmul_template.h
+12 −9 lib/x86/decompress_impl.h
+1 −3 lib/x86/matchfinder_impl.h
+2 −2 libdeflate.h
+1 −1 programs/test_checksums.c
+4 −2 programs/test_util.c
+1 −7 programs/test_util.h
+3 −2 scripts/android_build.sh
+1 −1 scripts/android_tests.sh
+126 −40 scripts/checksum_benchmarks.sh
+37 −0 scripts/gen-release-archives.sh
+10 −13 scripts/gen_crc32_multipliers.c
+53 −10 scripts/libFuzzer/deflate_compress/fuzz.c
+47 −4 scripts/libFuzzer/deflate_decompress/fuzz.c
+13 −5 scripts/libFuzzer/fuzz.sh
+0 −21 scripts/make-windows-releases.sh
+3 −2 scripts/run_tests.sh
4 changes: 2 additions & 2 deletions libdeflate.nim
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ else:

const
LIBDEFLATE_VERSION_MAJOR* = 1
LIBDEFLATE_VERSION_MINOR* = 19
LIBDEFLATE_VERSION_STRING* = "1.19"
LIBDEFLATE_VERSION_MINOR* = 22
LIBDEFLATE_VERSION_STRING* = "1.22"

type
libdeflate_result* = enum
Expand Down

0 comments on commit de9b517

Please sign in to comment.