Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.12.0 #115

Merged
merged 1 commit into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.12.0] - 2023-05-22

### Added

- `Conference.name` property
Expand All @@ -19,7 +21,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Changed

- Kotlin to 1.8.20
- Source and target compatibility to JDK 11
drymarau marked this conversation as resolved.
Show resolved Hide resolved
- Kotlin to 1.8.21
- WebRTC to M110
- **BREAKING**: `MessageRequest` no longer has a default `type` set
- Deprecated `Conference.message(String)`
Expand Down Expand Up @@ -208,7 +211,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- Initial release

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

Expand All @@ -58,7 +58,7 @@ dependencyResolutionManagement {
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.11.0")
from("com.pexip.sdk:sdk-catalog:0.12.0")
}
}
}
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.11.1-SNAPSHOT
version=0.12.0
# 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.11.0")
implementation("com.pexip.sdk:sdk-api-coroutines:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-api-infinity:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-api:0.12.0")
}
```
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.11.0")
from("com.pexip.sdk:sdk-catalog:0.12.0")
}
}
}
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.11.0")
implementation("com.pexip.sdk:sdk-conference-coroutines:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-conference-infinity:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-conference:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-media-android:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-media-coroutines:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-media-webrtc:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-media:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-registration-coroutines:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-registration-infinity:0.12.0")
}
```
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.11.0")
implementation("com.pexip.sdk:sdk-registration:0.12.0")
}
```