Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/download/0.15.1/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,8 @@ <h1>0.15.1 Release Notes</h1>
const decompress_reader: *std.Io.Reader = &decompress.reader;{#endsyntax#}</pre>
<p>If <code>decompress_reader</code> will be piped entirely to a particular <code>*Writer</code>, then give it an empty buffer:</p>
<pre>{#syntax#}var decompress: std.compress.flate.Decompress = .init(reader, .zlib, &.{});
const n = try decompress.streamRemaining(writer);{#endsyntax#}</pre>
const decompress_reader: *std.Io.Reader = &decompress.reader;
const n = try decompress_reader.streamRemaining(writer);{#endsyntax#}</pre>
<p>Compression functionality was removed. Sorry, you will have to copy the
old code into your application, or use a third party package.</p>
<p>It will be nice to get deflate back into the Zig standard library, but
Expand Down