Skip to content

Commit

Permalink
release: 0.7.0 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Rymarev authored Aug 2, 2022
1 parent 9b984c5 commit 339506b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 10 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.7.0] - 2022-08-02

### Added

- `sdk-registration-*` to support registration with Infinity
- `CameraVideoTrack.Callback` to provide notifications when the camera is disconnected
- `MediaConnectionFactory.createCameraVideoTrack()` that accepts `CameraVideoTrack.Callback`

### Changed

- Bumped Kotlin to 1.6.21
- Capturing state for `LocalAudioTrack` is now backed by `AudioManager.getMicrophoneMute()`
- Deprecated `MediaConnectionFactory.createCameraVideoTrack()` that doesn't
accept `CameraVideoTrack.Callback`

## [0.6.0] - 2022-06-30

### Added
Expand Down Expand Up @@ -77,7 +92,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.6.0...HEAD
[Unreleased]: https://github.com/pexip/pexip-android-sdk/compare/0.7.0...HEAD
[0.7.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.7.0
[0.6.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.6.0
[0.5.0]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.5.0
[0.4.1]: https://github.com/pexip/pexip-android-sdk/releases/tag/0.4.1
Expand Down
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +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.6.0")
implementation("com.pexip.sdk:sdk-api-infinity:0.7.0")
// A set of tools for interacting with an Infinity conference
implementation("com.pexip.sdk:sdk-conference-infinity:0.6.0")
implementation("com.pexip.sdk:sdk-conference-infinity:0.7.0")
// A set of tools for interacting with an Infinity registration
implementation("com.pexip.sdk:sdk-registration-infinity:0.7.0")
// A `MediaConnection` implementation build on top of WebRTC
implementation("com.pexip.sdk:sdk-media-webrtc:0.6.0")
implementation("com.pexip.sdk:sdk-media-webrtc:0.7.0")
// A set of extensions that add coroutines support for Infinity Client REST API
implementation("com.pexip.sdk:sdk-api-coroutines:0.6.0")
implementation("com.pexip.sdk:sdk-api-coroutines:0.7.0")
// A set of extensions that add coroutines support for Conference object
implementation("com.pexip.sdk:sdk-conference-coroutines:0.6.0")
implementation("com.pexip.sdk:sdk-conference-coroutines:0.7.0")
// A set of extensions that add coroutines support for Registration object
implementation("com.pexip.sdk:sdk-registration-coroutines:0.7.0")
// A set of extensions that add coroutines support for MediaConnection object
implementation("com.pexip.sdk:sdk-media-coroutines:0.6.0")
implementation("com.pexip.sdk:sdk-media-coroutines:0.7.0")
// A composable that wraps SurfaceViewRenderer
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.6.0")
implementation("com.pexip.sdk:sdk-media-webrtc-compose:0.7.0")
}
```

Expand All @@ -54,7 +58,7 @@ dependencyResolutionManagement {
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.6.0")
from("com.pexip.sdk:sdk-catalog:0.7.0")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencyResolutionManagement {
}
versionCatalogs {
register("pexipSdk") {
from("com.pexip.sdk:sdk-catalog:0.6.0")
from("com.pexip.sdk:sdk-catalog:0.7.0")
}
}
}
Expand Down

0 comments on commit 339506b

Please sign in to comment.