Skip to content

Commit 496be53

Browse files
github-actions[bot]github-actions
andauthored
chore(release): v7.0.0 (#289)
Co-authored-by: github-actions <[email protected]>
1 parent a64b64c commit 496be53

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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.
44

5+
## [7.0.0](https://github.com/GetStream/stream-chat-go/compare/v6.11.0...v7.0.0) (2024-09-10)
6+
7+
8+
### Features
9+
10+
* 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))
11+
* 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))
12+
513
## [6.11.0](https://github.com/GetStream/stream-chat-go/compare/v6.10.0...v6.11.0) (2024-05-27)
614

715

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Official Go SDK for [Stream Chat](https://getstream.io/chat/)
22

33
[![build](https://github.com/GetStream/stream-chat-go/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-go/actions)
4-
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v6?tab=doc)
4+
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v7?tab=doc)
55

66
<p align="center">
77
<img src="./assets/logo.svg" width="50%" height="50%">
@@ -28,7 +28,7 @@ For the client-side integrations (web and mobile) have a look at the JavaScript,
2828
## ⚙️ Installation
2929

3030
```shell
31-
go get github.com/GetStream/stream-chat-go/v6
31+
go get github.com/GetStream/stream-chat-go/v7
3232
```
3333

3434
## ✨ Getting started
@@ -39,7 +39,7 @@ package main
3939
import (
4040
"os"
4141

42-
stream "github.com/GetStream/stream-chat-go/v6"
42+
stream "github.com/GetStream/stream-chat-go/v7"
4343
)
4444

4545
var APIKey = os.Getenv("STREAM_KEY")

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/GetStream/stream-chat-go/v6
1+
module github.com/GetStream/stream-chat-go/v7
22

33
go 1.18
44

version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
)
66

77
const (
8-
versionMajor = 6
9-
versionMinor = 11
8+
versionMajor = 7
9+
versionMinor = 0
1010
versionPatch = 0
1111
)
1212

0 commit comments

Comments
 (0)