Skip to content

Commit 7527e90

Browse files
chore(release): 6.0.2 [skip ci]
## [6.0.2](Rapsssito/react-native-tcp-socket@v6.0.1...v6.0.2) (2022-09-30) ### Bug Fixes * Remove `timeout` from connection parameters ([16fea0b](Rapsssito@16fea0b))
1 parent 16fea0b commit 7527e90

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [6.0.2](https://github.com/Rapsssito/react-native-tcp-socket/compare/v6.0.1...v6.0.2) (2022-09-30)
2+
3+
4+
### Bug Fixes
5+
6+
* Remove `timeout` from connection parameters ([16fea0b](https://github.com/Rapsssito/react-native-tcp-socket/commit/16fea0bea42274e88122d2fa70c7d29de1df8632))
7+
18
## [6.0.1](https://github.com/Rapsssito/react-native-tcp-socket/compare/v6.0.0...v6.0.1) (2022-08-22)
29

310

coverage/coverage-final.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/types/Socket.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
* @typedef {{
1111
* port: number;
1212
* host?: string;
13-
* timeout?: number,
1413
* localAddress?: string,
1514
* localPort?: number,
1615
* interface?: 'wifi' | 'cellular' | 'ethernet',
@@ -248,7 +247,6 @@ export type NativeConnectionInfo = {
248247
export type ConnectionOptions = {
249248
port: number;
250249
host?: string | undefined;
251-
timeout?: number | undefined;
252250
localAddress?: string | undefined;
253251
localPort?: number | undefined;
254252
interface?: "wifi" | "cellular" | "ethernet" | undefined;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-tcp-socket",
33
"title": "React Native Tcp Socket",
4-
"version": "6.0.1",
4+
"version": "6.0.2",
55
"description": "React Native TCP socket API for Android & iOS with SSL/TLS support",
66
"main": "src/index.js",
77
"types": "lib/types/index.d.ts",

0 commit comments

Comments
 (0)