Skip to content

Commit d295e47

Browse files
committed
update version
1 parent 0b38c7c commit d295e47

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ result << stream.decompress(cstr[0, 10])
8787
result << stream.decompress(cstr[10..-1])
8888
```
8989

90+
### Skippable flame
91+
92+
```ruby
93+
compressed_data_with_skippable_frame = Zstd.write_skippable_frame(compressed_data, "sample data")
94+
95+
Zstd.read_skippable_frame(compressed_data_with_skippable_frame)
96+
# => "sample data"
97+
```
9098

9199
## JRuby
92100
This gem does not support JRuby.

lib/zstd-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Zstd
2-
VERSION = "1.5.4.0"
2+
VERSION = "1.5.4.1"
33
end

0 commit comments

Comments
 (0)