Skip to content

Commit 9035091

Browse files
committed
Bump 1.0.2 for feature #237
1 parent e6d0cc1 commit 9035091

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.2
2+
3+
**New Feature:**
4+
5+
* [#237](https://github.com/rikulo/socket.io-client-dart/pull/237) Allow sending an ack with multiple data items (making it consistent with emit)
6+
17
## 1.0.1
28

39
**Bug fix:**

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -283,3 +283,4 @@ If you are new to Git or GitHub, please read [this guide](https://help.github.co
283283
- Thanks [@Kavantix](https://github.com/Kavantix) for https://github.com/rikulo/socket.io-client-dart/issues/26
284284
- Thanks [@luandnguyen](https://github.com/luandnguyen) for https://github.com/rikulo/socket.io-client-dart/issues/59
285285
- Thanks [@fzyzcjy](https://github.com/fzyzcjy) for https://github.com/rikulo/socket.io-client-dart/pull/188
286+
- Thanks [@chatziko](https://github.com/chatziko) for https://github.com/rikulo/socket.io-client-dart/pull/237

lib/src/socket.dart

+1-5
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,7 @@ class Socket extends EventEmitter {
295295
sendData.add(data);
296296
}
297297

298-
packet({
299-
'type': ACK,
300-
'id': id,
301-
'data': sendData
302-
});
298+
packet({'type': ACK, 'id': id, 'data': sendData});
303299
};
304300
}
305301

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: socket_io_client
22
description: Dartlang port of socket.io-client for web, flutter, dartvm to use
3-
version: 1.0.1
3+
version: 1.0.2
44
homepage: https://www.zkoss.org
55
repository: https://github.com/rikulo/socket.io-client-dart
66
issue_tracker: https://github.com/rikulo/socket.io-client-dart/issues

0 commit comments

Comments
 (0)