summaryrefslogtreecommitdiffstats
path: root/tokio-util/CHANGELOG.md
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2020-03-04 15:54:41 -0500
committerGitHub <noreply@github.com>2020-03-04 15:54:41 -0500
commit9d4d076189822e32574f8123efe21c732103f4d4 (patch)
treee0ff83c547bacfba77d8277246e219e8e73f04f4 /tokio-util/CHANGELOG.md
parent1eb6131321b5bb8e0ccdb7b9433f6f0ef47821f2 (diff)
codec: change Encoder to take &Item (#1746)
Co-authored-by: Markus Westerlind <marwes91@gmail.com>
Diffstat (limited to 'tokio-util/CHANGELOG.md')
-rw-r--r--tokio-util/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md
index 48022e34..aaabd106 100644
--- a/tokio-util/CHANGELOG.md
+++ b/tokio-util/CHANGELOG.md
@@ -1,3 +1,14 @@
+# 0.3.0 (February 28, 2020)
+
+Breaking changes:
+
+- Change codec::Encoder trait to take a generic Item parameter (#1746), which allows
+ codec writers to pass references into `Framed` and `FramedWrite` types.
+
+Other additions:
+
+- Add futures-io/tokio::io compatibility layer (#2117)
+
# 0.2.0 (November 26, 2019)
- Initial release