From 720f9cb11f57045bc5144c2c4f1f42a68e582af9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 28 Feb 2024 17:31:54 +0000 Subject: [PATCH] Update release notes --- CHANGELOG.md | 12 ++++++++++++ client_info.go | 2 +- contributors/list | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec8679eac9..3222f02481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v2.20.0, 2024-02-28 + +## What's Changed +### Enhancements 🎉 +* Support [n]byte/[]byte type Scan/Append to FixedString column by @rogeryk in https://github.com/ClickHouse/clickhouse-go/pull/1205 +### Other Changes 🛠 +* Enable cloud tests by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1202 +* Removed LowCardinality(UInt64) tests that caused allow_suspicious_low_cardinality_types related error by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1206 + + +**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.19.0...v2.20.0 + # v2.19.0, 2024-02-26 ## What's Changed diff --git a/client_info.go b/client_info.go index e1b5f5fb0a..71b623db39 100644 --- a/client_info.go +++ b/client_info.go @@ -29,7 +29,7 @@ const ClientName = "clickhouse-go" const ( ClientVersionMajor = 2 - ClientVersionMinor = 19 + ClientVersionMinor = 20 ClientVersionPatch = 0 ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION ) diff --git a/contributors/list b/contributors/list index 42a2a485c3..3195249c54 100644 --- a/contributors/list +++ b/contributors/list @@ -1 +1 @@ -Kuba Kaflik +rogeryk