From 9211d1521efe719ba8108c53d3de4578a2bbdeed Mon Sep 17 00:00:00 2001 From: Santhosh Vaiyapuri Date: Thu, 28 Aug 2025 14:28:18 +0200 Subject: [PATCH] prepare for 1.3.9 release --- README.md | 8 ++++---- buildSrc/src/main/kotlin/io/getstream/Configurations.kt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b9ee3d781..edd32653f 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Add the below dependency to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("io.getstream:stream-webrtc-android:1.3.8") + implementation("io.getstream:stream-webrtc-android:1.3.9") } ``` @@ -70,12 +70,12 @@ dependencies { ### Including the SNAPSHOT -Snapshots of the current development version of AvatarView are available, which track [the latest versions](https://oss.sonatype.org/content/repositories/snapshots/io/getstream/stream-webrtc-android/). + To import snapshot versions on your project, add the code snippet below on your gradle file. ```kotlin repositories { - maven(url="https://oss.sonatype.org/content/repositories/snapshots/") + maven(url="https://central.sonatype.com/repository/maven-snapshots/") } ``` @@ -83,7 +83,7 @@ Next, add the below dependency to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("io.getstream:stream-webrtc-android:1.3.8-SNAPSHOT") + implementation("io.getstream:stream-webrtc-android:1.3.10-SNAPSHOT") } ``` diff --git a/buildSrc/src/main/kotlin/io/getstream/Configurations.kt b/buildSrc/src/main/kotlin/io/getstream/Configurations.kt index 4788d05c3..f22c5fc42 100644 --- a/buildSrc/src/main/kotlin/io/getstream/Configurations.kt +++ b/buildSrc/src/main/kotlin/io/getstream/Configurations.kt @@ -7,7 +7,7 @@ object Configurations { const val appMinSdk = 24 const val majorVersion = 1 const val minorVersion = 3 - const val patchVersion = 8 + const val patchVersion = 9 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"