From 388d72d12d2b91485ff83469be7d6a72728ff4a9 Mon Sep 17 00:00:00 2001 From: Dmitrii Kalianov Date: Tue, 23 Apr 2024 12:12:59 +0400 Subject: [PATCH] chore: bump version --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f30bdf6..d66b666 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.2.2] - 2024-04-23 + +### ๐Ÿš€ Features + +- Implement emit_err for try_fn_stream + +### ๐Ÿšœ Refactor + +- Use internal_emit instead of duplicate code + +### ๐Ÿ“š Documentation + +- Improve documentation and some panic messages + +### ๐Ÿงช Testing + +- Add test for emit_err + ## [0.2.1] - 2024-04-18 ### ๐Ÿšœ Refactor diff --git a/Cargo.toml b/Cargo.toml index b2eb71e..7ad5147 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "async-fn-stream" description = "Lightweight implementation of `async-stream` without macros" -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "MIT" homepage = "https://github.com/dmitryvk/async-fn-stream"