diff --git a/src/download/0.15.1/release-notes.html b/src/download/0.15.1/release-notes.html index 70c8dd329..b3941e682 100644 --- a/src/download/0.15.1/release-notes.html +++ b/src/download/0.15.1/release-notes.html @@ -1626,7 +1626,8 @@
If decompress_reader will be piped entirely to a particular *Writer, then give it an empty buffer:
{#syntax#}var decompress: std.compress.flate.Decompress = .init(reader, .zlib, &.{});
-const n = try decompress.streamRemaining(writer);{#endsyntax#}
+const decompress_reader: *std.Io.Reader = &decompress.reader;
+const n = try decompress_reader.streamRemaining(writer);{#endsyntax#}
Compression functionality was removed. Sorry, you will have to copy the old code into your application, or use a third party package.
It will be nice to get deflate back into the Zig standard library, but