Skip to content

Commit c836289

Browse files
committed
bump version
1 parent c516afb commit c836289

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://github.com/pseitz/lz4_flex"
88
repository = "https://github.com/pseitz/lz4_flex"
99
readme = "README.md"
1010
license = "MIT"
11-
version = "0.10.0"
11+
version = "0.11.0"
1212
include = ["src/*.rs", "src/frame/**/*", "src/block/**/*", "README.md"]
1313

1414
[package.metadata.docs.rs]

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,23 @@ Compression and decompression uses no usafe via the default feature flags "safe-
4646

4747
Safe:
4848
```
49-
lz4_flex = { version = "0.10" }
49+
lz4_flex = { version = "0.11" }
5050
```
5151

5252
Performance:
5353
```
54-
lz4_flex = { version = "0.10", default-features = false }
54+
lz4_flex = { version = "0.11", default-features = false }
5555
```
5656

5757
If you know guaranteed your data is valid and not broken or corrupted, you can use `unchecked-decode` feature-flag to get a little bit more performance during decompression.
5858
Ususally you don't want this, use case may be:
5959
- Compression/Decompression happens in memory.
60-
- You run sandboxed so out of bounds reads/writes are not a problem.
61-
- You data is checked against a checksum.
60+
- The compression runs sandboxed so out of bounds reads/writes are not a problem.
61+
- The data is checked against a checksum.
6262
```
63-
lz4_flex = { version = "0.10", default-features = false, features = ["unchecked-decode"] }
63+
lz4_flex = { version = "0.11", default-features = false, features = ["unchecked-decode"] }
6464
```
6565

66-
6766
### Block Format
6867
The block format is only valid for smaller data chunks as as block is de/compressed in memory.
6968
For larger data use the frame format, which consists of multiple blocks.

0 commit comments

Comments
 (0)