Skip to content

Commit

Permalink
chore(version): bump to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Nov 9, 2023
1 parent 8643122 commit ab469e8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ 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'
}
```

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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab469e8

Please sign in to comment.