Skip to content

Commit 859dd09

Browse files
Merge pull request #306 from GetStream/release-1.3.9
chore: prepare for 1.3.9 release
2 parents a77551d + 9211d15 commit 859dd09

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Add the below dependency to your **module**'s `build.gradle` file:
5959

6060
```kotlin
6161
dependencies {
62-
implementation("io.getstream:stream-webrtc-android:1.3.8")
62+
implementation("io.getstream:stream-webrtc-android:1.3.9")
6363
}
6464
```
6565

@@ -70,20 +70,20 @@ dependencies {
7070

7171
### Including the SNAPSHOT
7272

73-
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/).
73+
<!-- 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/). -->
7474

7575
To import snapshot versions on your project, add the code snippet below on your gradle file.
7676
```kotlin
7777
repositories {
78-
maven(url="https://oss.sonatype.org/content/repositories/snapshots/")
78+
maven(url="https://central.sonatype.com/repository/maven-snapshots/")
7979
}
8080
```
8181

8282
Next, add the below dependency to your **module**'s `build.gradle` file:
8383

8484
```kotlin
8585
dependencies {
86-
implementation("io.getstream:stream-webrtc-android:1.3.8-SNAPSHOT")
86+
implementation("io.getstream:stream-webrtc-android:1.3.10-SNAPSHOT")
8787
}
8888
```
8989

buildSrc/src/main/kotlin/io/getstream/Configurations.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object Configurations {
77
const val appMinSdk = 24
88
const val majorVersion = 1
99
const val minorVersion = 3
10-
const val patchVersion = 8
10+
const val patchVersion = 9
1111
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
1212
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
1313
const val artifactGroup = "io.getstream"

0 commit comments

Comments
 (0)