Skip to content

Commit ab4c5fe

Browse files
committed
Release v2.1.1
1 parent 01ec688 commit ab4c5fe

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Repository for testing build from jitpack.io
1515
## Version Release
1616
This Is Latest Release
1717

18-
$version_release = 2.1.0
18+
$version_release = 2.1.1
1919

2020
What's New??
2121

@@ -49,7 +49,7 @@ object Version {
4949
const val preference = "1.2.0" // https://developer.android.com/jetpack/androidx/releases/preference
5050
const val core = "1.9.0" // https://developer.android.com/jetpack/androidx/releases/core
5151
const val liveCycle = "2.5.1" // https://developer.android.com/jetpack/androidx/releases/lifecycle
52-
const val liveCycleArch = "2.1.0" // https://developer.android.com/jetpack/androidx/releases/lifecycle
52+
const val liveCycleArch = "2.1.1" // https://developer.android.com/jetpack/androidx/releases/lifecycle
5353
const val room = "2.5.0" // https://developer.android.com/jetpack/androidx/releases/room
5454
const val work = "2.7.1" // https://developer.android.com/jetpack/androidx/releases/work
5555
const val activityKtx = "1.6.1" // https://developer.android.com/jetpack/androidx/releases/activity
@@ -117,6 +117,8 @@ object Version {
117117
const val ktor = "2.2.2" // https://ktor.io/
118118
const val piracyChecker = "1.2.8" // https://github.com/javiersantos/PiracyChecker
119119
const val customActivityOnCrash = "2.4.0" // https://github.com/Ereza/CustomActivityOnCrash
120+
121+
const val balloon = "1.5.2" // https://github.com/skydoves/Balloon
120122
}
121123

122124
}
@@ -139,7 +141,7 @@ repositories {
139141
```kotlin
140142
dependencies {
141143
// library open-build-src
142-
implementation("com.github.frogobox:open-build-src:2.1.0")
144+
implementation("com.github.frogobox:open-build-src:2.1.1")
143145
}
144146
```
145147

buildSrc/src/main/kotlin/ProjectSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ object ProjectSetting {
2525

2626
const val VERSION_MAJOR = 2
2727
const val VERSION_MINOR = 1
28-
const val VERSION_PATCH = 0
28+
const val VERSION_PATCH = 1
2929

3030
// -----------------------------------------------------------------------------------------------------------------
3131

src/main/kotlin/GitHub.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,7 @@ object GitHub {
2828
const val customActivityOnCrash = "cat.ereza:customactivityoncrash:${Version.Util.customActivityOnCrash}"
2929
fun customActivityOnCrash(version: String): String = "cat.ereza:customactivityoncrash:$version"
3030

31+
const val balloon = "com.github.skydoves:balloon:${Version.Util.balloon}"
32+
fun balloon(version: String): String = "com.github.skydoves:balloon:$version"
33+
3134
}

src/main/kotlin/Version.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ object Version {
103103
const val ktor = "2.2.2" // https://ktor.io/
104104
const val piracyChecker = "1.2.8" // https://github.com/javiersantos/PiracyChecker
105105
const val customActivityOnCrash = "2.4.0" // https://github.com/Ereza/CustomActivityOnCrash
106+
107+
const val balloon = "1.5.2" // https://github.com/skydoves/Balloon
106108
}
107109

108110
}

0 commit comments

Comments
 (0)