Skip to content

Commit c9511e8

Browse files
github-actions[bot]github-actionsyaziine
authored
chore(release): v6.0.0 (#232)
Co-authored-by: github-actions <[email protected]> Co-authored-by: Yassine Ennebati <[email protected]>
1 parent 97c9e84 commit c9511e8

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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+
## [6.0.0](https://github.com/GetStream/stream-chat-go/compare/v5.8.1...v6.0.0) (2022-07-11)
6+
7+
8+
### Bug Fixes
9+
10+
* handle clearing in app settings ([#228](https://github.com/GetStream/stream-chat-go/issues/228)) ([e6a084d](https://github.com/GetStream/stream-chat-go/commit/e6a084dce160e2f53f824a6bd5c6d5c93fff341b))
11+
512
### [5.8.1](https://github.com/GetStream/stream-chat-go/compare/v5.8.0...v5.8.1) (2022-06-08)
613

714

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/v5?tab=doc)
4+
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v6?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/v5
31+
go get github.com/GetStream/stream-chat-go/v6
3232
```
3333

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

42-
stream "github.com/GetStream/stream-chat-go/v5"
42+
stream "github.com/GetStream/stream-chat-go/v6"
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/v5
1+
module github.com/GetStream/stream-chat-go/v6
22

33
go 1.17
44

version.go

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

77
const (
8-
versionMajor = 5
9-
versionMinor = 8
10-
versionPatch = 1
8+
versionMajor = 6
9+
versionMinor = 0
10+
versionPatch = 0
1111
)
1212

1313
// Version returns the version of the library.

0 commit comments

Comments
 (0)