Skip to content

Commit

Permalink
Release v3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ferhatelmas committed Nov 1, 2021
1 parent 3005735 commit 2585807
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.13.0] 2021-11-01

- Add support for async endpoints
- Delete channels
- Delete users
- Export channels
- Add support for async url enrichment app configuration
- Remove base url from readme
- To simplify setup and unnecessary with edge

## [3.12.2] 2021-09-01

- Use edge as base url at default
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,11 @@ import (
var APIKey = os.Getenv("STREAM_CHAT_API_KEY")
var APISecret = os.Getenv("STREAM_CHAT_API_SECRET")
var userID = "" // your server user id
var baseURL = "https://chat-proxy-singapore.stream-io-api.com"

func main() {
client, err := stream.NewClient(APIKey, APISecret)
// handle error

// set a base url if other than US, singapore in this example
client.BaseURL = baseURL

// use client methods

// create channel with users
Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

const (
versionMajor = 3
versionMinor = 12
versionPatch = 2
versionMinor = 13
versionPatch = 0
)

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

0 comments on commit 2585807

Please sign in to comment.