Skip to content

Commit

Permalink
chore(version): bump to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jun 16, 2022
1 parent 41dae77 commit ca1d100
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

Version 1.4.0
-------------

## Dependencies:

- srt 1.5.0
- openssl 3.0.1

Version 1.3.0
-------------

Expand Down Expand Up @@ -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
Expand All @@ -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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit ca1d100

Please sign in to comment.