diff --git a/CHANGELOG.md b/CHANGELOG.md index 55aee108..cfb45e89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [4.1.0](https://github.com/tradle/react-native-udp/compare/v4.0.4...v4.1.0) (2020-12-05) + + +### Features + +* Add rx timestamp to rinfo payload ([#146](https://github.com/tradle/react-native-udp/issues/146)) ([c468a39](https://github.com/tradle/react-native-udp/commit/c468a3942b7637302b33cf9946f2e89818ea70fb)) + ## [4.0.4](https://github.com/tradle/react-native-udp/compare/v4.0.3...v4.0.4) (2020-11-28) diff --git a/lib/types/UdpSocket.d.ts b/lib/types/UdpSocket.d.ts index 66f3a627..dd801550 100644 --- a/lib/types/UdpSocket.d.ts +++ b/lib/types/UdpSocket.d.ts @@ -68,7 +68,7 @@ export default class UdpSocket extends EventEmitter { disconnect(): void; /** * @private - * @param {{ data: string; address: string; port: number; }} info + * @param {{ data: string; address: string; port: number; ts: number; }} info */ private _onReceive; /** diff --git a/package.json b/package.json index 4bd9f9f8..a5d65784 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-udp", - "version": "4.0.4", + "version": "4.1.0", "description": "React Native UDP socket API for Android & iOS", "homepage": "https://github.com/tradle/react-native-udp", "main": "src/index.js",