Skip to content

Commit

Permalink
release: 0.14.1 (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
drymarau authored Feb 8, 2024
1 parent 3241a7a commit b9d6e18
Show file tree
Hide file tree
Showing 20 changed files with 33 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ body:
attributes:
label: 'Version'
description: 'What library version are you using?'
placeholder: '0.14.0'
placeholder: '0.14.1'
validations:
required: true
- type: textarea
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.14.1] - 2023-02-07

### Fixed

- SSE restart caused by `SerializationException` in `ParticipantResponseSerializer` due to unknown
values

## [0.14.0] - 2023-01-18

### Added
Expand Down Expand Up @@ -300,7 +307,8 @@ path and will be removed at a later point.

- Initial release

[Unreleased]: https://github.com/pexip/pexip-android-sdk/compare/0.14.0...HEAD
[Unreleased]: https://github.com/pexip/pexip-android-sdk/compare/0.14.1...HEAD
[0.14.1]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.14.1
[0.14.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.14.0
[0.13.1]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.13.1
[0.13.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.13.0
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ And add modules that you need:
```kotlin
dependencies {
// A fluent wrapper for Infinity Client REST API
implementation("com.pexip.sdk:sdk-api-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-api-infinity:0.14.1")
// A set of tools for interacting with an Infinity conference
implementation("com.pexip.sdk:sdk-conference-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-conference-infinity:0.14.1")
// A set of tools for interacting with an Infinity registration
implementation("com.pexip.sdk:sdk-registration-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-registration-infinity:0.14.1")
// A `MediaConnection` implementation build on top of WebRTC
implementation("com.pexip.sdk:sdk-media-webrtc:0.14.0")
implementation("com.pexip.sdk:sdk-media-webrtc:0.14.1")
// A composable that wraps SurfaceViewRenderer
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.14.0")
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.14.1")
}
```

Expand All @@ -50,7 +50,7 @@ dependencyResolutionManagement {
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.14.0")
from("com.pexip.sdk:sdk-catalog:0.14.1")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.pexip.sdk
version=0.14.1-SNAPSHOT
version=0.14.1
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
Expand Down
2 changes: 1 addition & 1 deletion sdk-api-coroutines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Coroutines support for sdk-api.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-api-coroutines:0.14.0")
implementation("com.pexip.sdk:sdk-api-coroutines:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-api-infinity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ A fluent wrapper for Pexip Infinity Client REST API.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-api-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-api-infinity:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ A set of common classes and interfaces to build APIs.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-api:0.14.0")
implementation("com.pexip.sdk:sdk-api:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencyResolutionManagement {
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.14.0")
from("com.pexip.sdk:sdk-catalog:0.14.1")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sdk-conference-coroutines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Coroutines support for sdk-conference.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-conference-coroutines:0.14.0")
implementation("com.pexip.sdk:sdk-conference-coroutines:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-conference-infinity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Infinity-based implementation of sdk-conference.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-conference-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-conference-infinity:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-conference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ A set of tools to interact with conferences.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-conference:0.14.0")
implementation("com.pexip.sdk:sdk-conference:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-infinity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Pexip Infinity SDK

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-infinity:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-media-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Android-specific extensions for sdk-media.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-media-android:0.14.0")
implementation("com.pexip.sdk:sdk-media-android:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-media-coroutines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Coroutines support for sdk-media.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-media-coroutines:0.14.0")
implementation("com.pexip.sdk:sdk-media-coroutines:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-media-webrtc-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Compose support for sdk-media-webrtc.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.14.0")
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-media-webrtc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ WebRTC-based implementation of sdk-media.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-media-webrtc:0.14.0")
implementation("com.pexip.sdk:sdk-media-webrtc:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-media/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ A set of classes and interfaces to help with establishing a media connection.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-media:0.14.0")
implementation("com.pexip.sdk:sdk-media:Infinity.Json.")
}
```
2 changes: 1 addition & 1 deletion sdk-registration-coroutines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Coroutines support for sdk-registration.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-registration-coroutines:0.14.0")
implementation("com.pexip.sdk:sdk-registration-coroutines:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-registration-infinity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Infinity-based implementation of sdk-registration.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-registration-infinity:0.14.0")
implementation("com.pexip.sdk:sdk-registration-infinity:0.14.1")
}
```
2 changes: 1 addition & 1 deletion sdk-registration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ A set of tools to interact with registrations.

```kotlin
dependencies {
implementation("com.pexip.sdk:sdk-registration:0.14.0")
implementation("com.pexip.sdk:sdk-registration:0.14.1")
}
```

0 comments on commit b9d6e18

Please sign in to comment.