From 4dd22ffbd830691a6342a273b2fd6246553ca9e1 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 27 Aug 2024 08:06:34 +0000 Subject: [PATCH] Update release notes --- CHANGELOG.md | 11 +++++++++++ client_info.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9426936009..93fdda24c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v2.28.1, 2024-08-27 + +## What's Changed +### Fixes 🐛 +* Recognize empty strings as a valid enum key by @genzgd in https://github.com/ClickHouse/clickhouse-go/pull/1387 +### Other Changes 🛠 +* ClickHouse 24.8 by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1385 + + +**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.28.0...v2.28.1 + # v2.28.0, 2024-08-23 ## What's Changed diff --git a/client_info.go b/client_info.go index 82604079df..36df1c5586 100644 --- a/client_info.go +++ b/client_info.go @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go" const ( ClientVersionMajor = 2 ClientVersionMinor = 28 - ClientVersionPatch = 0 + ClientVersionPatch = 1 ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION )