diff --git a/README.md b/README.md index 243a57df..ec7203bd 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add the dependency below into your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:sandwich:2.0.2" + implementation "com.github.skydoves:sandwich:2.0.3" } ``` diff --git a/buildSrc/src/main/kotlin/com/github/skydoves/sandwich/Configuration.kt b/buildSrc/src/main/kotlin/com/github/skydoves/sandwich/Configuration.kt index 483709c2..d75144b1 100644 --- a/buildSrc/src/main/kotlin/com/github/skydoves/sandwich/Configuration.kt +++ b/buildSrc/src/main/kotlin/com/github/skydoves/sandwich/Configuration.kt @@ -23,9 +23,9 @@ object Configuration { const val minSdkDemo = 21 const val majorVersion = 2 const val minorVersion = 0 - const val patchVersion = 2 + const val patchVersion = 3 const val versionName = "$majorVersion.$minorVersion.$patchVersion" - const val versionCode = 35 + const val versionCode = 36 const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "com.github.skydoves" } diff --git a/docs/snapshot.md b/docs/snapshot.md index 8f82ba36..bd3e4ee1 100644 --- a/docs/snapshot.md +++ b/docs/snapshot.md @@ -32,7 +32,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```Groovy dependencies { - implementation "com.github.skydoves:sandwich:2.0.3-SNAPSHOT" + implementation "com.github.skydoves:sandwich:2.0.4-SNAPSHOT" } ``` @@ -40,6 +40,6 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("com.github.skydoves:sandwich:2.0.3-SNAPSHOT") + implementation("com.github.skydoves:sandwich:2.0.4-SNAPSHOT") } ```