diff --git a/CHANGELOG.md b/CHANGELOG.md index c09c01f..4bad737 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ 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. +## [1.1.0](https://github.com/GetStream/stream-chat-go/compare/v7.2.0...v1.1.0) (2025-01-13) + ## [7.2.0](https://github.com/GetStream/stream-chat-go/compare/v7.1.0...v7.2.0) (2024-12-04) ## [7.1.0](https://github.com/GetStream/stream-chat-go/compare/v7.0.0...v7.1.0) (2024-10-28) diff --git a/README.md b/README.md index a8f6796..6de9e47 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/v7?tab=doc) +[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v1?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/v7 +go get github.com/GetStream/stream-chat-go/v1 ``` ## ✨ Getting started @@ -39,7 +39,7 @@ package main import ( "os" - stream "github.com/GetStream/stream-chat-go/v7" + stream "github.com/GetStream/stream-chat-go/v1" ) var APIKey = os.Getenv("STREAM_KEY") diff --git a/go.mod b/go.mod index d7d5340..e0ba7be 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/GetStream/stream-chat-go/v7 +module github.com/GetStream/stream-chat-go/v1 go 1.18 diff --git a/version.go b/version.go index aed2721..169e78a 100644 --- a/version.go +++ b/version.go @@ -5,8 +5,8 @@ import ( ) const ( - versionMajor = 7 - versionMinor = 2 + versionMajor = 1 + versionMinor = 1 versionPatch = 0 )