From ab469e8821d6ea93e112753babcd69935c1ffa1d Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Thu, 9 Nov 2023 15:18:09 +0100 Subject: [PATCH] chore(version): bump to 1.5.0 --- 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 6c3601a..77d5883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All changes to this project will be documented in this file. +## [1.5.0] - 2023-11-09 + +- Add a `compose-player` module to use the player with Jetpack Compose +- Add a specific component to hande full screen for view-based usage: + see `ApiVideoPlayerFullScreenController`. +- Add an API to set/get how the video is displayed in its parent view: see `viewFit`. +- Move to gradle 8 +- Upgrade to Kotlin 1.9 + ## [1.4.2] - 2023-10-09 - Add `isLive` API diff --git a/README.md b/README.md index 7b8a20d..9d2cef7 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ In your module `build.gradle`, add the following code in `dependencies`: ```groovy dependencies { - implementation 'video.api:android-player:1.4.2' + implementation 'video.api:android-player:1.5.0' } ``` @@ -49,7 +49,7 @@ For Jetpack Compose, also add the following code in `dependencies`: ```groovy dependencies { - implementation 'video.api:android-compose-player:1.4.2' + implementation 'video.api:android-compose-player:1.5.0' } ``` diff --git a/gradle.properties b/gradle.properties index a9fd3d3..f7f4c90 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,8 +22,8 @@ kotlin.code.style=official # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true -VERSION_NAME=1.4.2 -VERSION_CODE=1004002 +VERSION_NAME=1.5.0 +VERSION_CODE=1005000 GROUP=video.api POM_PACKAGING=aar