Skip to content

Commit 5186d95

Browse files
chore(release): 4.5.4 [skip ci]
## [4.5.4](v4.5.3...v4.5.4) (2020-10-14) ### Bug Fixes * Add ref() & unref() as empty methods ([#84](#84)) ([1ee98a4](1ee98a4))
1 parent 1ee98a4 commit 5186d95

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [4.5.4](https://github.com/Rapsssito/react-native-tcp-socket/compare/v4.5.3...v4.5.4) (2020-10-14)
2+
3+
4+
### Bug Fixes
5+
6+
* Add ref() & unref() as empty methods ([#84](https://github.com/Rapsssito/react-native-tcp-socket/issues/84)) ([1ee98a4](https://github.com/Rapsssito/react-native-tcp-socket/commit/1ee98a482f2d12c9a26216eda02421ba225c109c))
7+
18
## [4.5.3](https://github.com/Rapsssito/react-native-tcp-socket/compare/v4.5.2...v4.5.3) (2020-10-02)
29

310

coverage/coverage-final.json

Lines changed: 4 additions & 0 deletions
Large diffs are not rendered by default.

lib/types/TcpSocket.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ export default class TcpSocket extends EventEmitter {
156156
* @private
157157
*/
158158
private _setDisconnected;
159+
ref(): void;
160+
unref(): void;
159161
addListener(event: string | symbol, listener: (...args: any[]) => void): TcpSocket;
160162
on(event: string | symbol, listener: (...args: any[]) => void): TcpSocket;
161163
once(event: string | symbol, listener: (...args: any[]) => void): TcpSocket;

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": "4.5.3",
4+
"version": "4.5.4",
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)