From f2705f6e07e3ce15df9b84331380369efc8ff2c9 Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Fri, 12 Jul 2024 15:47:42 +0200 Subject: [PATCH] chore(version): bump to 1.5.1 --- CHANGELOG.md | 9 +++++++++ README.md | 4 ++-- gradle.properties | 4 ++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d5883..c295a9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All changes to this project will be documented in this file. +## [1.5.1] - 2024-07-12 + +- Release `MediaSession` when player is released +- Fix `isMuted` and `volume` API +- Rename `videoId` to `mediaId` in `VideoOptions` +- Simplify controller constructors +- Use /session endpoint for private live stream +- Tests: fix failed due to emulator timeout + ## [1.5.0] - 2023-11-09 - Add a `compose-player` module to use the player with Jetpack Compose diff --git a/README.md b/README.md index 52a4734..70b8a7e 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ In your module `build.gradle`, add the following code in `dependencies`: ```groovy dependencies { - implementation 'video.api:android-player:1.5.0' + implementation 'video.api:android-player:1.5.1' } ``` @@ -64,7 +64,7 @@ For Jetpack Compose, also add the following code in `dependencies`: ```groovy dependencies { - implementation 'video.api:android-compose-player:1.5.0' + implementation 'video.api:android-compose-player:1.5.1' } ``` diff --git a/gradle.properties b/gradle.properties index 5b00df4..9ee367b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -24,8 +24,8 @@ android.nonTransitiveRClass=true android.nonFinalResIds=false -VERSION_NAME=1.5.0 -VERSION_CODE=1005000 +VERSION_NAME=1.5.1 +VERSION_CODE=1005001 GROUP=video.api POM_PACKAGING=aar