File tree Expand file tree Collapse file tree 20 files changed +33
-25
lines changed
sdk-conference-coroutines
sdk-registration-coroutines
sdk-registration-infinity Expand file tree Collapse file tree 20 files changed +33
-25
lines changed Original file line number Diff line number Diff line change 2424 attributes :
2525 label : ' Version'
2626 description : ' What library version are you using?'
27- placeholder : ' 0.14.0 '
27+ placeholder : ' 0.14.1 '
2828 validations :
2929 required : true
3030 - type : textarea
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77
88## [ Unreleased]
99
10+ ## [ 0.14.1] - 2023-02-07
11+
12+ ### Fixed
13+
14+ - SSE restart caused by ` SerializationException ` in ` ParticipantResponseSerializer ` due to unknown
15+ values
16+
1017## [ 0.14.0] - 2023-01-18
1118
1219### Added
@@ -300,7 +307,8 @@ path and will be removed at a later point.
300307
301308- Initial release
302309
303- [ Unreleased ] : https://github.com/pexip/pexip-android-sdk/compare/0.14.0...HEAD
310+ [ Unreleased ] : https://github.com/pexip/pexip-android-sdk/compare/0.14.1...HEAD
311+ [ 0.14.1 ] : https://github.com/pexip/pexip-android-sdk/releases/tag/0.14.1
304312[ 0.14.0 ] : https://github.com/pexip/pexip-android-sdk/releases/tag/0.14.0
305313[ 0.13.1 ] : https://github.com/pexip/pexip-android-sdk/releases/tag/0.13.1
306314[ 0.13.0 ] : https://github.com/pexip/pexip-android-sdk/releases/tag/0.13.0
Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ And add modules that you need:
2424``` kotlin
2525dependencies {
2626 // A fluent wrapper for Infinity Client REST API
27- implementation(" com.pexip.sdk:sdk-api-infinity:0.14.0 " )
27+ implementation(" com.pexip.sdk:sdk-api-infinity:0.14.1 " )
2828 // A set of tools for interacting with an Infinity conference
29- implementation(" com.pexip.sdk:sdk-conference-infinity:0.14.0 " )
29+ implementation(" com.pexip.sdk:sdk-conference-infinity:0.14.1 " )
3030 // A set of tools for interacting with an Infinity registration
31- implementation(" com.pexip.sdk:sdk-registration-infinity:0.14.0 " )
31+ implementation(" com.pexip.sdk:sdk-registration-infinity:0.14.1 " )
3232 // A `MediaConnection` implementation build on top of WebRTC
33- implementation(" com.pexip.sdk:sdk-media-webrtc:0.14.0 " )
33+ implementation(" com.pexip.sdk:sdk-media-webrtc:0.14.1 " )
3434 // A composable that wraps SurfaceViewRenderer
35- implementation(" com.pexip.sdk:sdk-media-webrtc-compose:0.14.0 " )
35+ implementation(" com.pexip.sdk:sdk-media-webrtc-compose:0.14.1 " )
3636}
3737```
3838
@@ -50,7 +50,7 @@ dependencyResolutionManagement {
5050 }
5151 versionCatalogs {
5252 register(" pexipSdk" ) {
53- from(" com.pexip.sdk:sdk-catalog:0.14.0 " )
53+ from(" com.pexip.sdk:sdk-catalog:0.14.1 " )
5454 }
5555 }
5656}
Original file line number Diff line number Diff line change 11group =com.pexip.sdk
2- version =0.14.1-SNAPSHOT
2+ version =0.14.1
33# Project-wide Gradle settings.
44# IDE (e.g. Android Studio) users:
55# Gradle settings configured through the IDE *will override*
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ Coroutines support for sdk-api.
88
99``` kotlin
1010dependencies {
11- implementation(" com.pexip.sdk:sdk-api-coroutines:0.14.0 " )
11+ implementation(" com.pexip.sdk:sdk-api-coroutines:0.14.1 " )
1212}
1313```
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ A fluent wrapper for Pexip Infinity Client REST API.
88
99``` kotlin
1010dependencies {
11- implementation(" com.pexip.sdk:sdk-api-infinity:0.14.0 " )
11+ implementation(" com.pexip.sdk:sdk-api-infinity:0.14.1 " )
1212}
1313```
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ A set of common classes and interfaces to build APIs.
88
99``` kotlin
1010dependencies {
11- implementation(" com.pexip.sdk:sdk-api:0.14.0 " )
11+ implementation(" com.pexip.sdk:sdk-api:0.14.1 " )
1212}
1313```
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencyResolutionManagement {
1616 }
1717 versionCatalogs {
1818 register(" pexipSdk" ) {
19- from(" com.pexip.sdk:sdk-catalog:0.14.0 " )
19+ from(" com.pexip.sdk:sdk-catalog:0.14.1 " )
2020 }
2121 }
2222}
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ Coroutines support for sdk-conference.
88
99``` kotlin
1010dependencies {
11- implementation(" com.pexip.sdk:sdk-conference-coroutines:0.14.0 " )
11+ implementation(" com.pexip.sdk:sdk-conference-coroutines:0.14.1 " )
1212}
1313```
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ Infinity-based implementation of sdk-conference.
88
99``` kotlin
1010dependencies {
11- implementation(" com.pexip.sdk:sdk-conference-infinity:0.14.0 " )
11+ implementation(" com.pexip.sdk:sdk-conference-infinity:0.14.1 " )
1212}
1313```
You can’t perform that action at this time.
0 commit comments