diff --git a/CHANGELOG.md b/CHANGELOG.md index 93fdda24c7..bbcb7ff23a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v2.28.2, 2024-08-30 + +## What's Changed +### Fixes 🐛 +* Validate connection in bad state before query execution in the stdlib database/sql driver by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1396 +### Other Changes 🛠 +* Update README with newer Go versions by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1393 + + +**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.28.1...v2.28.2 + # v2.28.1, 2024-08-27 ## What's Changed diff --git a/client_info.go b/client_info.go index 36df1c5586..3fbcd9f046 100644 --- a/client_info.go +++ b/client_info.go @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go" const ( ClientVersionMajor = 2 ClientVersionMinor = 28 - ClientVersionPatch = 1 + ClientVersionPatch = 2 ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION )