Skip to content

Commit

Permalink
Release: v.1.1.4-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-the-h committed Mar 27, 2023
1 parent 7a78a09 commit 78b133a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 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 @@ Changelog
=========
All notable changes to this project will be documented in this file.

v1.1.4-alpha
-------------

### Changed

- Added buffer to `Ws` sender channel

v1.1.3-alpha
-------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Installation
-----------------

```bash
go get github.com/amir-the-h/[email protected].3-alpha
go get github.com/amir-the-h/[email protected].4-alpha
```

Usage
Expand Down
2 changes: 1 addition & 1 deletion api/ws/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func NewClient(ctx context.Context, apiKey, secretKey, passphrase string, url ma
ctx: ctx,
Cancel: cancel,
url: url,
sendChan: map[bool]chan []byte{true: make(chan []byte), false: make(chan []byte)},
sendChan: map[bool]chan []byte{true: make(chan []byte, 3), false: make(chan []byte, 3)},
DoneChan: make(chan interface{}),
StructuredEventChan: make(chan interface{}),
RawEventChan: make(chan *events.Basic),
Expand Down

0 comments on commit 78b133a

Please sign in to comment.