Skip to content

Commit

Permalink
Bump 1.0.2 for feature #237
Browse files Browse the repository at this point in the history
  • Loading branch information
jumperchen committed Nov 19, 2021
1 parent e6d0cc1 commit 9035091
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.2

**New Feature:**

* [#237](https://github.com/rikulo/socket.io-client-dart/pull/237) Allow sending an ack with multiple data items (making it consistent with emit)

## 1.0.1

**Bug fix:**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,4 @@ If you are new to Git or GitHub, please read [this guide](https://help.github.co
- Thanks [@Kavantix](https://github.com/Kavantix) for https://github.com/rikulo/socket.io-client-dart/issues/26
- Thanks [@luandnguyen](https://github.com/luandnguyen) for https://github.com/rikulo/socket.io-client-dart/issues/59
- Thanks [@fzyzcjy](https://github.com/fzyzcjy) for https://github.com/rikulo/socket.io-client-dart/pull/188
- Thanks [@chatziko](https://github.com/chatziko) for https://github.com/rikulo/socket.io-client-dart/pull/237
6 changes: 1 addition & 5 deletions lib/src/socket.dart
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,7 @@ class Socket extends EventEmitter {
sendData.add(data);
}

packet({
'type': ACK,
'id': id,
'data': sendData
});
packet({'type': ACK, 'id': id, 'data': sendData});
};
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: socket_io_client
description: Dartlang port of socket.io-client for web, flutter, dartvm to use
version: 1.0.1
version: 1.0.2
homepage: https://www.zkoss.org
repository: https://github.com/rikulo/socket.io-client-dart
issue_tracker: https://github.com/rikulo/socket.io-client-dart/issues
Expand Down

0 comments on commit 9035091

Please sign in to comment.