From d07068ed7ce5147b6e7f49d5eb97b6aab3611435 Mon Sep 17 00:00:00 2001 From: Jaewoong Eum Date: Tue, 22 Aug 2023 09:53:44 +0900 Subject: [PATCH] Prepare to release 0.3.2 (#781) --- .../main/kotlin/io/getstream/video/android/Configuration.kt | 4 ++-- docusaurus/docs/Android/02-tutorials/01-video-calling.mdx | 2 +- docusaurus/docs/Android/02-tutorials/02-audio-room.mdx | 2 +- docusaurus/docs/Android/02-tutorials/03-livestream.mdx | 2 +- docusaurus/docs/Android/06-advanced/04-chat-with-video.mdx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt index a3e6696852..80701ff629 100644 --- a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt @@ -6,9 +6,9 @@ object Configuration { const val minSdk = 24 const val majorVersion = 0 const val minorVersion = 3 - const val patchVersion = 1 + const val patchVersion = 2 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 6 + const val versionCode = 7 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream" const val streamVideoCallGooglePlayVersion = "1.0.0" diff --git a/docusaurus/docs/Android/02-tutorials/01-video-calling.mdx b/docusaurus/docs/Android/02-tutorials/01-video-calling.mdx index 00701ff50a..11fe2b9514 100644 --- a/docusaurus/docs/Android/02-tutorials/01-video-calling.mdx +++ b/docusaurus/docs/Android/02-tutorials/01-video-calling.mdx @@ -31,7 +31,7 @@ If you're new to android, note that there are 2 `build.gradle` files, you want t ```kotlin dependencies { // Stream Video Compose SDK - implementation("io.getstream:stream-video-android-compose:0.3.1") + implementation("io.getstream:stream-video-android-compose:0.3.2") // Optionally add Jetpack Compose if Android studio didn't automatically include them implementation(platform("androidx.compose:compose-bom:2023.06.00")) diff --git a/docusaurus/docs/Android/02-tutorials/02-audio-room.mdx b/docusaurus/docs/Android/02-tutorials/02-audio-room.mdx index 9a75c9596e..1fe15a1cfb 100644 --- a/docusaurus/docs/Android/02-tutorials/02-audio-room.mdx +++ b/docusaurus/docs/Android/02-tutorials/02-audio-room.mdx @@ -35,7 +35,7 @@ If you're new to android, note that there are 2 `build.gradle` files, you want t ```groovy dependencies { // Stream Video Compose SDK - implementation("io.getstream:stream-video-android-compose:0.3.1") + implementation("io.getstream:stream-video-android-compose:0.3.2") // Jetpack Compose (optional/ android studio typically adds them when you create a new project) implementation(platform("androidx.compose:compose-bom:2023.06.00")) diff --git a/docusaurus/docs/Android/02-tutorials/03-livestream.mdx b/docusaurus/docs/Android/02-tutorials/03-livestream.mdx index e57bc04a31..745c65bac7 100644 --- a/docusaurus/docs/Android/02-tutorials/03-livestream.mdx +++ b/docusaurus/docs/Android/02-tutorials/03-livestream.mdx @@ -35,7 +35,7 @@ If you're new to android, note that there are 2 `build.gradle` files, you want t ```kotlin dependencies { // Stream Video Compose SDK - implementation("io.getstream:stream-video-android-compose:0.3.1") + implementation("io.getstream:stream-video-android-compose:0.3.2") // Jetpack Compose (optional/ android studio typically adds them when you create a new project) implementation(platform("androidx.compose:compose-bom:2023.06.00")) diff --git a/docusaurus/docs/Android/06-advanced/04-chat-with-video.mdx b/docusaurus/docs/Android/06-advanced/04-chat-with-video.mdx index 9abace9b04..306cae83be 100644 --- a/docusaurus/docs/Android/06-advanced/04-chat-with-video.mdx +++ b/docusaurus/docs/Android/06-advanced/04-chat-with-video.mdx @@ -31,7 +31,7 @@ Let the project sync. It should have all the dependencies required for you to fi ```groovy dependencies { // Stream Video Compose SDK - implementation("io.getstream:stream-video-android-compose:0.3.1") + implementation("io.getstream:stream-video-android-compose:0.3.2") // Stream Chat implementation(libs.stream.chat.compose)