From 5e9073dcd69a1082d59b5ee49b43534d82b5fb34 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 27 Dec 2023 10:00:03 +0000 Subject: [PATCH] Update release notes --- CHANGELOG.md | 11 +++++++++++ client_info.go | 2 +- contributors/list | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42ba3460d5..bcfe72fd04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v2.17.1, 2023-12-27 + +## What's Changed +### Fixes 🐛 +* fix panic in contextWatchDog nil pointer check by @nityanandagohain in https://github.com/ClickHouse/clickhouse-go/pull/1168 + +## New Contributors +* @nityanandagohain made their first contribution in https://github.com/ClickHouse/clickhouse-go/pull/1168 + +**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.17.0...v2.17.1 + # v2.17.0, 2023-12-21 ## What's Changed diff --git a/client_info.go b/client_info.go index e8401ac1fc..d7b7c24208 100644 --- a/client_info.go +++ b/client_info.go @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go" const ( ClientVersionMajor = 2 ClientVersionMinor = 17 - ClientVersionPatch = 0 + ClientVersionPatch = 1 ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION ) diff --git a/contributors/list b/contributors/list index b6628d1661..01d276261d 100644 --- a/contributors/list +++ b/contributors/list @@ -1 +1 @@ -Aram Peres <6775216+aramperes@users.noreply.github.com> +Nityananda Gohain