Skip to content

Commit 70e07f6

Browse files
committed
Update to LZ4 1.9.4
1 parent a176c22 commit 70e07f6

File tree

8 files changed

+10
-6
lines changed

8 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.7
2+
3+
- Updated [prebuilt libraries](lib/src/lz4/blobs) to [LZ4 v1.9.4](https://github.com/lz4/lz4/releases/tag/v1.9.4).
4+
15
## 2.0.6
26

37
- Updated ffi package dependency constraints to >=1.0.0 <3.0.0

lib/src/lz4/blobs/eslz4-linux64.so

12.6 KB
Binary file not shown.
16.6 KB
Binary file not shown.

lib/src/lz4/blobs/eslz4-win64.dll

1.52 KB
Binary file not shown.

lib/src/lz4/codec.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Lz4Codec extends Codec<List<int>, List<int>> {
7070
final int outputBufferLength;
7171

7272
/// Return the base binding version this binding code was developed for.
73-
Lz4Version get bindingVersion => const Lz4Version(10902);
73+
Lz4Version get bindingVersion => const Lz4Version(10904);
7474

7575
/// Return the actual library version of the shared library.
7676
Lz4Version get libraryVersion => Lz4Version(libraryVersionNumber);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: es_compression
22
description: Compression framework providing FFI implementations for Brotli, Lz4, Zstd (Zstandard) with ready-to-use prebuilt binaries for Win/Linux/Mac.
3-
version: 2.0.6
3+
version: 2.0.7
44
homepage: https://www.instantiations.com
55
issue_tracker: https://github.com/instantiations/es_compression/issues
66
repository: https://github.com/instantiations/es_compression

test/lz4_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import 'package:test/test.dart';
1111
void main() {
1212
test('Test Lz4 Version Number', () {
1313
const codec = lz4;
14-
const bindingVersion = '1.9.2';
15-
const libraryVersion = '1.9.3';
14+
const bindingVersion = '1.9.4';
15+
const libraryVersion = '1.9.4';
1616
expect(codec.bindingVersion.toString(), bindingVersion);
1717
expect(codec.libraryVersion.toString(), libraryVersion);
1818
});

tool/blob_builder/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ set(BROTLI_VERSION_MOD 9)
144144
#-- The period-delimited 3 position format (1.0.0)
145145
set(BROTLI_VERSION "${BROTLI_VERSION_MAJOR}.${BROTLI_VERSION_MINOR}.${BROTLI_VERSION_MOD}")
146146

147-
#-- LZ4 Version: 1.9.3
147+
#-- LZ4 Version: 1.9.4
148148
set(LZ4_VERSION_MAJOR 1)
149149
set(LZ4_VERSION_MINOR 9)
150-
set(LZ4_VERSION_MOD 3)
150+
set(LZ4_VERSION_MOD 4)
151151
#-- The period-delimited 3 position format (1.0.0)
152152
set(LZ4_VERSION "${LZ4_VERSION_MAJOR}.${LZ4_VERSION_MINOR}.${LZ4_VERSION_MOD}")
153153

0 commit comments

Comments
 (0)