Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chinloyal committed Jan 25, 2021
1 parent 619a29e commit 81fec44
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.3 - January 24, 2021
* BUGFIX: Binding to channel events cancels calls to onConnectionStateChange
* Added a Stream Handler contract to allow multiple classes to listen to the same event channel

## 1.1.2 - January 20, 2021
* PATCH: Removed log4j dependency for android

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Add to your pubspec.yaml

```yaml
dependencies:
pusher_client: ^1.1.2
pusher_client: ^1.1.3
```
## Configuration
Expand Down Expand Up @@ -154,7 +154,7 @@ channel.bind("order-status-updated", (PusherEvent event) {
print(event.data);
});
// Unsubscibe from channel
// Unsubscribe from channel
pusher.unsubscribe("private-orders");
// Disconnect from pusher service
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.1.2"
version: "1.1.3"
sky_engine:
dependency: transitive
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: pusher_client
description: |
A Pusher Channels client plugin for Flutter targeting Android and iOS. It
wraps pusher-websocket-java v2.2.5 and pusher-websocket-swift v8.0.0.
version: 1.1.2
version: 1.1.3
homepage: https://github.com/chinloyal/pusher_client
documentation: https://github.com/chinloyal/pusher_client/blob/master/README.md

Expand Down

0 comments on commit 81fec44

Please sign in to comment.