diff --git a/CHANGELOG.md b/CHANGELOG.md index a262302c..cf10373e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +Version 1.4.0 +------------- + +## Dependencies: + +- srt 1.5.0 +- openssl 3.0.1 + Version 1.3.0 ------------- @@ -31,23 +39,30 @@ Version 1.2.0 ------------- ## Dependencies: + - srt 1.4.4 - openssl 1.1.1k ## Features: + - New API guide Version 1.1.0 ------------- ## Dependencies: + - srt 1.4.3 - openssl 1.1.1k ## API changes: + - You don't have to call Srt.startUp(), it is called when you access to an SRT class. -- Srt() is now static: directly use Srt object. Same for Time() and Error(), but it doesn't affect API usage. -- In case an error happened, connectionTime/setRejectReason/peerName/inetAddress/port/sockName/localAddress/localPort return an exception instead of a null +- Srt() is now static: directly use Srt object. Same for Time() and Error(), but it doesn't affect + API usage. +- In case an error happened, + connectionTime/setRejectReason/peerName/inetAddress/port/sockName/localAddress/localPort return an + exception instead of a null - In case an error happened, most Epoll methods return an exception instead of a -1 - Fix a typo: SockStatus NONEXIST become NON_EXIST - MsgCtrl.boundary is a Boundary type and no longer an Int @@ -57,17 +72,21 @@ Version 1.0.0 ------------- ## Dependencies: + - srt 1.4.2 - openssl 1.1.1h ## API changes: + - use Kotlin getter/setter instead of Java getValue() - most API returns an exception when srt returns -1 ## Features: + - add new API from srt 1.4.2 - add API from Android Socket API ## Bugfixes: + - getSockName(), getPeerName() and accept() return an address diff --git a/README.md b/README.md index 59cd0678..8ffb14ec 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Get srtdroid latest artifacts on MavenCentral. ```gradle dependencies { - implementation 'io.github.thibaultbee:srtdroid:1.3.0' + implementation 'io.github.thibaultbee:srtdroid:1.4.0' } ``` diff --git a/build.gradle b/build.gradle index e72d228f..c9bc9171 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { - versionCode = 3 - versionName = "1.3.0" + versionCode = 001_004_000 + versionName = "1.4.0" kotlin_version = '1.6.10' dokka_version = '1.5.0'