From a6e522c21ed0e6dbaa9d95a4a025a65c8909adbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 18 Jul 2023 00:36:08 +0000 Subject: [PATCH 1/2] [tagpr] prepare for the next release --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 503ee34..009b746 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tokio-fluent" -version = "0.3.1" +version = "0.4.0" authors = ["johnmanjiro13"] edition = "2021" description = "A fluentd client using tokio" diff --git a/README.md b/README.md index b8a26c9..5d28dc4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add this to your `Cargo.toml` ```toml [dependencies] -tokio-fluent = "0.3.1" +tokio-fluent = "0.4.0" ``` ## Example From 8a78ada9cfea963edc5d5c4aef2945c1adf92ee1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 18 Jul 2023 00:36:08 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4df27b..7c1294c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.4.0](https://github.com/johnmanjiro13/tokio-fluent/compare/v0.3.1...v0.4.0) - 2023-07-18 +- ci: Run test with multiple fluentd versions by @johnmanjiro13 in https://github.com/johnmanjiro13/tokio-fluent/pull/27 +- Allow for regular strings instead of only static strings by @DaanDD in https://github.com/johnmanjiro13/tokio-fluent/pull/25 +- Use tokio streams instead of crossbeam to fix deadlock issues by @DaanDD in https://github.com/johnmanjiro13/tokio-fluent/pull/26 + ## [v0.3.1](https://github.com/johnmanjiro13/tokio-fluent/compare/v0.3.0...v0.3.1) - 2023-01-20 - Revert "test: read_ack" by @johnmanjiro13 in https://github.com/johnmanjiro13/tokio-fluent/pull/15