diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 12d3676..ff73ba7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,8 +30,6 @@ jobs: - '.scalafmt.conf' - 'sbt' - 'sbt.bat' - - 'Makefile*' - - '**/VERSION' code_format: name: code format needs: changes diff --git a/src/main/resources/org/xerial/snappy/VERSION b/src/main/resources/org/xerial/snappy/VERSION index 024f23f..b9fcc51 100755 --- a/src/main/resources/org/xerial/snappy/VERSION +++ b/src/main/resources/org/xerial/snappy/VERSION @@ -1,2 +1,2 @@ -SNAPPY_VERSION=1.2.2 +SNAPPY_VERSION=1.1.10 BITSHUFFLE_VERSION=0.3.4 diff --git a/src/main/resources/org/xerial/snappy/native/Mac/aarch64/libsnappyjava.dylib b/src/main/resources/org/xerial/snappy/native/Mac/aarch64/libsnappyjava.dylib index 20518e9..35a8fc8 100755 Binary files a/src/main/resources/org/xerial/snappy/native/Mac/aarch64/libsnappyjava.dylib and b/src/main/resources/org/xerial/snappy/native/Mac/aarch64/libsnappyjava.dylib differ diff --git a/src/test/java/org/xerial/snappy/SnappyOutputStreamTest.java b/src/test/java/org/xerial/snappy/SnappyOutputStreamTest.java index a2068fb..36ef552 100755 --- a/src/test/java/org/xerial/snappy/SnappyOutputStreamTest.java +++ b/src/test/java/org/xerial/snappy/SnappyOutputStreamTest.java @@ -180,8 +180,8 @@ public class SnappyOutputStreamTest if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN) assertEquals(90992, expectedCompressedData.length); else if(OSInfo.getArchName() == "aarch64") - // Arm has a better compression ratio (improved with Snappy 1.2.2) - assertEquals(90277, expectedCompressedData.length); + // Arm has a better compression ratio + assertEquals(91051, expectedCompressedData.length); else assertEquals(91080, expectedCompressedData.length); // The chunk size should not affect the size of the compressed output: