From c8c5cdb4c06ecdc8a1439150c659213adf963e98 Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Fri, 11 Aug 2023 12:37:32 +0200 Subject: [PATCH 1/2] chore: prepare 0.5.0 release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cbc515..bad97e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.5.0 -- SASL, Backoff Configs + +### Features +- backoff config w/ deadline added to `CLientConfig` (#213, #215) +- `PLAIN` SASL auth (#216) + +### Bug Fixes +- license specifier now has correct SPDX 2.1 format + +### Dependency Updates +- `integer-encoding` to 3 (#209) +- `j4rs` (dev dependency) to 0.17.0 (#207, #210) +- `rdkafka` (dev dependency) to 0.33 (#206, #208) + + ## 0.4.0 -- More Stability ### Breaking diff --git a/Cargo.toml b/Cargo.toml index a45115a..2b9c213 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "rskafka" -version = "0.4.0" +version = "0.5.0" edition = "2021" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" readme = "README.md" keywords = [ "api", From 57ed1d162fd127b593e7ca5ab1762bb7d6a386ba Mon Sep 17 00:00:00 2001 From: Marco Neumann Date: Fri, 11 Aug 2023 13:07:17 +0200 Subject: [PATCH 2/2] fix: typo Co-authored-by: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bad97e6..b604600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.5.0 -- SASL, Backoff Configs ### Features -- backoff config w/ deadline added to `CLientConfig` (#213, #215) +- backoff config w/ deadline added to `ClientConfig` (#213, #215) - `PLAIN` SASL auth (#216) ### Bug Fixes