Skip to content

Commit e64c932

Browse files
committed
Updates:
- Bumped `media3` version from `1.2.4` to `1.2.5` - Updated library version to `1.0.8` in `README.md`, `build.gradle.kts`, `FastPixPlayerLibraryInfo.kt`, and `libs.versions.toml` - Updated `CHANGELOG.md` with version `1.0.8` changes
1 parent 7fb7d42 commit e64c932

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.8]
6+
- Bumped `media3` version from `1.2.4` to `1.2.5`
7+
58
## [1.0.7]
69
### Updates:
710
- Bumped `media3` version from `1.2.3` to `1.2.4`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ Add the following to your `build.gradle.kts` (or `build.gradle`):
5454

5555
```kotlin
5656
dependencies {
57-
implementation("io.fastpix.player:android:1.0.7")
57+
implementation("io.fastpix.player:android:1.0.8")
5858
}
5959
```
6060

6161
Or if using version catalogs, add to `libs.versions.toml`:
6262

6363
```toml
6464
[versions]
65-
fastpix-player = "1.0.7"
65+
fastpix-player = "1.0.8"
6666

6767
[libraries]
6868
fastpix-player = { module = "io.fastpix.player:android-player-sdk", version.ref = "fastpix-player" }

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lifecycle = "2.8.7"
1414
constraintlayout = "2.2.1"
1515
exoplayer = "1.9.0"
1616
coroutines = "1.9.0"
17-
media3 = "1.2.4"
17+
media3 = "1.2.5"
1818
workManager = "2.10.0"
1919
okhttp = "4.12.0"
2020
gson = "2.10.1"

library/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ publishing {
7575
create<MavenPublication>("bar") {
7676
groupId = "io.fastpix.player"
7777
artifactId = "android"
78-
version = "1.0.7"
78+
version = "1.0.8"
7979
artifact("${buildDir}/outputs/aar/library-release.aar")
8080

8181
pom.withXml {

library/src/main/java/io/fastpix/media3/info/FastPixPlayerLibraryInfo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package io.fastpix.media3.info
22

33
object FastPixPlayerLibraryInfo {
44
const val PLAYER_NAME = "fastpix-android-player"
5-
const val PLAYER_VERSION = "1.0.7"
5+
const val PLAYER_VERSION = "1.0.8"
66
}

0 commit comments

Comments
 (0)