Skip to content

Commit 4bcacaf

Browse files
committed
Bump 1.0.1 version for #188 bug fix
1 parent 224ed90 commit 4bcacaf

File tree

5 files changed

+424
-109
lines changed

5 files changed

+424
-109
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.1
2+
3+
**Bug fix:**
4+
5+
* [#188](https://github.com/rikulo/socket.io-client-dart/pull/188) Fixbug for Backoff when many attempts: "UnsupportedError: Unsupported operation: Infinity or NaN toInt"
6+
17
## 1.0.0
28

39
**New Feature:**

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -282,3 +282,4 @@ If you are new to Git or GitHub, please read [this guide](https://help.github.co
282282
- Thanks [@bruce3x](https://github.com/bruce3x) for https://github.com/rikulo/socket.io-client-dart/issues/25
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
285+
- Thanks [@fzyzcjy](https://github.com/fzyzcjy) for https://github.com/rikulo/socket.io-client-dart/pull/188

lib/socket_io_client.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Socket _lookup(uri, opts) {
5555
false == opts['multiplex'] ||
5656
sameNamespace;
5757

58-
var io;
58+
late Manager io;
5959

6060
if (newConnection) {
6161
_logger.fine('ignoring socket cache for $uri');

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.0
3+
version: 1.0.1
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)