Skip to content

Commit

Permalink
chore(release): v6.0.0 (#232)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
Co-authored-by: Yassine Ennebati <[email protected]>
  • Loading branch information
3 people authored Jul 11, 2022
1 parent 97c9e84 commit c9511e8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [6.0.0](https://github.com/GetStream/stream-chat-go/compare/v5.8.1...v6.0.0) (2022-07-11)


### Bug Fixes

* 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))

### [5.8.1](https://github.com/GetStream/stream-chat-go/compare/v5.8.0...v5.8.1) (2022-06-08)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/v5?tab=doc)
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v6?tab=doc)

<p align="center">
<img src="./assets/logo.svg" width="50%" height="50%">
Expand All @@ -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/v5
go get github.com/GetStream/stream-chat-go/v6
```

## ✨ Getting started
Expand All @@ -39,7 +39,7 @@ package main
import (
"os"

stream "github.com/GetStream/stream-chat-go/v5"
stream "github.com/GetStream/stream-chat-go/v6"
)

var APIKey = os.Getenv("STREAM_KEY")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/GetStream/stream-chat-go/v5
module github.com/GetStream/stream-chat-go/v6

go 1.17

Expand Down
6 changes: 3 additions & 3 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
)

const (
versionMajor = 5
versionMinor = 8
versionPatch = 1
versionMajor = 6
versionMinor = 0
versionPatch = 0
)

// Version returns the version of the library.
Expand Down

0 comments on commit c9511e8

Please sign in to comment.