Skip to content

Commit f6d981b

Browse files
committed
Bump to v0.6.1
1 parent 6b2d0df commit f6d981b

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## v0.6.1 - 2026-05-09
6+
7+
### Performance
8+
9+
- **Tune inflate preallocation for high-ratio streams**: For compressed inputs in the 512–2047 byte range, preallocate 96× instead of 3× the input size, reducing buffer reallocations and yielding a **13.7% decompression speedup**.
10+
511
## v0.6.0 - 2026-05-08
612

713
### Performance

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ This library provides:
88
- **Streaming and Synchronous APIs** for flexible data processing
99
- **Built-in Security** against zip bombs, path traversal, and corrupted data
1010

11+
## Benchmark
12+
13+
Platform: macOS (Apple Silicon), MoonBit wasm-gc target. Full results in [bench.md](https://github.com/hustcer/fzip/blob/feature/bench/src/benchmarks/bench.md).
14+
1115
## Features
1216

1317
- Pure MoonBit implementation with no external dependencies (compiled to Wasm-GC)
@@ -17,10 +21,6 @@ This library provides:
1721
- Robust security limits configurable per operation
1822
- Comprehensive test coverage (220+ tests)
1923

20-
## Benchmark
21-
22-
Platform: macOS (Apple Silicon), MoonBit wasm-gc target. Full results in [bench.md](https://github.com/hustcer/fzip/blob/feature/bench/src/benchmarks/bench.md).
23-
2424
## Installation
2525

2626
```bash
@@ -32,7 +32,7 @@ Or add this to your `moon.mod.json`:
3232
```json
3333
{
3434
"deps": {
35-
"hustcer/fzip": "0.6.0"
35+
"hustcer/fzip": "0.6.1"
3636
}
3737
}
3838
```

moon.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hustcer/fzip",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"readme": "README.md",
55
"repository": "https://github.com/hustcer/fzip",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)