Skip to content

Commit

Permalink
Fixed Issue #40
Browse files Browse the repository at this point in the history
  • Loading branch information
sethloco committed Mar 3, 2023
1 parent 200a0e6 commit 8ff1e74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.10

- Fixed issue [#40](https://github.com/instantiations/es_compression/issues/40)

## 2.0.9

- Updated [prebuilt libraries](lib/src/zstd/blobs) to [ZSTD v1.5.4](https://github.com/facebook/zstd/releases/tag/v1.5.4).
Expand Down
2 changes: 1 addition & 1 deletion bin/es_compress.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Future<int> main(List<String> arguments) async {
// Read/Interpret arguments
final algorithm =
argResults[algorithmArg] as String? ?? _guessAlgorithm(argResults);
final level = argResults[levelArg] as String;
final level = argResults[levelArg] as String?;
final encode = _shouldEncode(argResults);
final codec = _selectCodec(algorithm, level);
final coder = (encode == true) ? codec.encoder : codec.decoder;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: es_compression
description: Compression framework providing FFI implementations for Brotli, Lz4, Zstd (Zstandard) with ready-to-use prebuilt binaries for Win/Linux/Mac.
version: 2.0.9
version: 2.0.10
homepage: https://www.instantiations.com
issue_tracker: https://github.com/instantiations/es_compression/issues
repository: https://github.com/instantiations/es_compression
Expand Down

0 comments on commit 8ff1e74

Please sign in to comment.