From c4e7df08fb0e59e26355684004aae2db394a7b0b Mon Sep 17 00:00:00 2001 From: skydoves Date: Wed, 6 Nov 2024 14:10:59 +0900 Subject: [PATCH] Prepare for release 1.2.0 --- README.md | 2 +- .../src/main/kotlin/com/skydoves/bindables/Configuration.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9bea7f1..f2aed00 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ You can reference the good use cases of this library in the below repositories. Add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:bindables:1.1.0" + implementation("com.github.skydoves:bindables:1.2.0") } ``` diff --git a/buildSrc/src/main/kotlin/com/skydoves/bindables/Configuration.kt b/buildSrc/src/main/kotlin/com/skydoves/bindables/Configuration.kt index d6627ef..2000fac 100644 --- a/buildSrc/src/main/kotlin/com/skydoves/bindables/Configuration.kt +++ b/buildSrc/src/main/kotlin/com/skydoves/bindables/Configuration.kt @@ -21,10 +21,10 @@ object Configuration { const val targetSdk = 35 const val minSdk = 21 const val majorVersion = 1 - const val minorVersion = 1 + const val minorVersion = 2 const val patchVersion = 0 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 11 + const val versionCode = 12 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "com.github.skydoves" }