From 89aec5bf31a56afb6c90ba7170273e1127acf133 Mon Sep 17 00:00:00 2001 From: skydoves Date: Sun, 19 Nov 2023 00:17:28 +0900 Subject: [PATCH] Prepare for release 1.6.3 --- README.md | 12 ++++++------ .../kotlin/com/skydoves/balloon/Configuration.kt | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 176a00a7..27c3d1f9 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ If you want to use Balloon in your Jetpack Compose project, check out the **[Bal ### Gradle Add the dependency below to your **module**'s `build.gradle` file: -```gradle +```kotlin dependencies { - implementation "com.github.skydoves:balloon:1.6.2" + implementation("com.github.skydoves:balloon:1.6.3") } ``` @@ -57,16 +57,16 @@ dependencies { Snapshots of the current development version of Balloon are available, which track [the latest versions](https://oss.sonatype.org/content/repositories/snapshots/com/github/skydoves/balloon/). To import snapshot versions on your project, add the code snippet below on your gradle file. -```Gradle +```kotlin repositories { - maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } + maven(url = "https://oss.sonatype.org/content/repositories/snapshots/") } ``` Next, add the below dependency to your **module**'s `build.gradle` file. -```gradle +```kotlin dependencies { - implementation "com.github.skydoves:balloon:1.6.3-SNAPSHOT" + implementation("com.github.skydoves:balloon:1.6.4-SNAPSHOT") } ``` diff --git a/buildSrc/src/main/kotlin/com/skydoves/balloon/Configuration.kt b/buildSrc/src/main/kotlin/com/skydoves/balloon/Configuration.kt index 459078b3..2ac147ca 100644 --- a/buildSrc/src/main/kotlin/com/skydoves/balloon/Configuration.kt +++ b/buildSrc/src/main/kotlin/com/skydoves/balloon/Configuration.kt @@ -23,9 +23,9 @@ object Configuration { const val minSdkBenchmark = 23 const val majorVersion = 1 const val minorVersion = 6 - const val patchVersion = 2 + const val patchVersion = 3 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 57 + const val versionCode = 58 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "com.github.skydoves" }