From aa7fc99e96805cc990c8b60591c69f204cc3fe0b Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Wed, 4 Sep 2024 11:35:54 +1000 Subject: [PATCH] Release 0.12.0 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f7c12e..0622572 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.12.0 + +- Add `client` feature to enable encoding of requests and decoding of responses (enabled by default) +- Add `broker` feature to enable encoding of responses and decoding of requests (enabled by default) +- Add `messages_enums` feature to enable `ResponseKind` and `RequestKind` enums +- Add `encode`, `decode` and `header_version` methods to `ResponseKind` and `RequestKind` + ## v0.11.0 - Replace `derive_builder` with custom impl. diff --git a/Cargo.lock b/Cargo.lock index ed6bd3e..fe43ba7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -947,7 +947,7 @@ checksum = "9dbbfed4e59ba9750e15ba154fdfd9329cee16ff3df539c2666b70f58cc32105" [[package]] name = "kafka-protocol" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index ff4f728..631074a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["protocol_codegen"] [package] name = "kafka-protocol" -version = "0.11.0" +version = "0.12.0" authors = [ "Diggory Blake ", "Charlotte McElwain ",