diff --git a/CHANGELOG.md b/CHANGELOG.md index d481942cbf..eb9b8dffdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v2.27.2, 2024-08-20 + +## What's Changed +### Enhancements 🎉 +* Optimize Date/Date32 scan by @ShoshinNikita in https://github.com/ClickHouse/clickhouse-go/pull/1374 +### Fixes 🐛 +* Fix column list parsing for multiline INSERT statements by @Fiery-Fenix in https://github.com/ClickHouse/clickhouse-go/pull/1373 + +## New Contributors +* @Fiery-Fenix made their first contribution in https://github.com/ClickHouse/clickhouse-go/pull/1373 +* @ShoshinNikita made their first contribution in https://github.com/ClickHouse/clickhouse-go/pull/1374 + +**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.27.1...v2.27.2 + # v2.27.1, 2024-08-05 ## What's Changed diff --git a/client_info.go b/client_info.go index 71400693b9..65dcd8ad49 100644 --- a/client_info.go +++ b/client_info.go @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go" const ( ClientVersionMajor = 2 ClientVersionMinor = 27 - ClientVersionPatch = 1 + ClientVersionPatch = 2 ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION ) diff --git a/contributors/list b/contributors/list index 42a2a485c3..5da1bfe924 100644 --- a/contributors/list +++ b/contributors/list @@ -1 +1 @@ -Kuba Kaflik +Shoshin Nikita