From 496be5372c5b008df5a48dfdcf971be771d134b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 13:28:29 +0200 Subject: [PATCH] chore(release): v7.0.0 (#289) Co-authored-by: github-actions --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- go.mod | 2 +- version.go | 4 ++-- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad25c7e..6db7eac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [7.0.0](https://github.com/GetStream/stream-chat-go/compare/v6.11.0...v7.0.0) (2024-09-10) + + +### Features + +* add support for dynamic partitioning config ([#286](https://github.com/GetStream/stream-chat-go/issues/286)) ([f94bd70](https://github.com/GetStream/stream-chat-go/commit/f94bd7097a76c3fc823db4f10c7fb3c540d63f3b)) +* add support for querying deactivated users ([#288](https://github.com/GetStream/stream-chat-go/issues/288)) ([a64b64c](https://github.com/GetStream/stream-chat-go/commit/a64b64c94b9250622ba8acdad71c5210fdd08098)) + ## [6.11.0](https://github.com/GetStream/stream-chat-go/compare/v6.10.0...v6.11.0) (2024-05-27) diff --git a/README.md b/README.md index 73bd42f..a8f6796 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Official Go SDK for [Stream Chat](https://getstream.io/chat/) [![build](https://github.com/GetStream/stream-chat-go/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-go/actions) -[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v6?tab=doc) +[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v7?tab=doc)

@@ -28,7 +28,7 @@ For the client-side integrations (web and mobile) have a look at the JavaScript, ## ⚙️ Installation ```shell -go get github.com/GetStream/stream-chat-go/v6 +go get github.com/GetStream/stream-chat-go/v7 ``` ## ✨ Getting started @@ -39,7 +39,7 @@ package main import ( "os" - stream "github.com/GetStream/stream-chat-go/v6" + stream "github.com/GetStream/stream-chat-go/v7" ) var APIKey = os.Getenv("STREAM_KEY") diff --git a/go.mod b/go.mod index 559275e..d7d5340 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/GetStream/stream-chat-go/v6 +module github.com/GetStream/stream-chat-go/v7 go 1.18 diff --git a/version.go b/version.go index 775b70d..9278d45 100644 --- a/version.go +++ b/version.go @@ -5,8 +5,8 @@ import ( ) const ( - versionMajor = 6 - versionMinor = 11 + versionMajor = 7 + versionMinor = 0 versionPatch = 0 )