From b10930207cde0afc6821521d7b1bdd2374b5398d Mon Sep 17 00:00:00 2001
From: Yoshua Wuyts <yoshuawuyts@gmail.com>
Date: Tue, 29 Oct 2019 00:44:07 +0100
Subject: [PATCH] more

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
---
 CHANGELOG.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 19af02e..c34fa24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -43,6 +43,9 @@ assert_eq!(r.recv().await, Some(2));
 - Added `sync::channel` as "unstable".
 - Added doc links from instantiated structs to the methods that create them.
 - Implemented `Extend` + `FromStream` for `PathBuf`.
+- Added `Stream::sum` as "unstable"
+- Added `Stream::product` as "unstable"
+- Added `Stream::timeout` as "unstable"
 
 ## Changed
 - Fixed an issue with `block_on` so it works even when nested.
@@ -51,6 +54,7 @@ assert_eq!(r.recv().await, Some(2));
 - Updated the homepage link in `Cargo.toml` to point to [async.rs](https://async.rs).
 - Updated the module-level documentation for `stream` and `sync`.
 - Various typos and grammar fixes.
+- Removed redundant file flushes, improving the performance of `File` operations
 
 ## Removed
 Nothing was removed in this release.