From bcba9f412b22961ff09831c9bdcb51a23ec62ba5 Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Mon, 9 Dec 2024 07:24:52 +1100 Subject: [PATCH] Release 0.14 (#101) --- 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 525fe9c..c1ba5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased +## v0.14.0 + +- `Records::encode`/`Records::decode` is now reverted back to their original API, instead `encode_with_custom_compression` and `decode_with_custom_compression` is provided for custom compression. +- `ApiKey` variants are renamed to remove the `Key` suffix. +- Add `iterate_all` and `valid_versions` methods to `ApiKey` +- Implement `PartialEq` and `Display` for `VersionRange` + ## v0.13.0 - All "map" types in the protocol that were previously of type `IndexMap` are now of type `Vec`, the value of `K` is stored as a field within `V`. diff --git a/Cargo.lock b/Cargo.lock index 9256411..7baccef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -947,7 +947,7 @@ checksum = "9dbbfed4e59ba9750e15ba154fdfd9329cee16ff3df539c2666b70f58cc32105" [[package]] name = "kafka-protocol" -version = "0.13.0" +version = "0.14.0" dependencies = [ "anyhow", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 3179910..4ce79ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["protocol_codegen"] [package] name = "kafka-protocol" -version = "0.13.0" +version = "0.14.0" authors = [ "Diggory Blake ", "Charlotte McElwain ",