Skip to content

Commit 8efce2d

Browse files
committed
Prepare for release 1.6.6
1 parent 7ca1166 commit 8efce2d

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
lines changed

README.md

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,35 +43,10 @@ Add the dependency below to your **module**'s `build.gradle` file:
4343

4444
```kotlin
4545
dependencies {
46-
implementation("com.github.skydoves:balloon:1.6.5")
46+
implementation("com.github.skydoves:balloon:1.6.6")
4747
}
4848
```
4949

50-
## SNAPSHOT
51-
[![Balloon](https://img.shields.io/static/v1?label=snapshot&message=balloon&logo=apache%20maven&color=C71A36)](https://oss.sonatype.org/content/repositories/snapshots/com/github/skydoves/balloon/) <br>
52-
53-
<details>
54-
<summary>See how to import the snapshot</summary>
55-
56-
### Including the SNAPSHOT
57-
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/).
58-
59-
To import snapshot versions on your project, add the code snippet below on your gradle file.
60-
```kotlin
61-
repositories {
62-
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
63-
}
64-
```
65-
66-
Next, add the below dependency to your **module**'s `build.gradle` file.
67-
```kotlin
68-
dependencies {
69-
implementation("com.github.skydoves:balloon:1.6.5-SNAPSHOT")
70-
}
71-
```
72-
73-
</details>
74-
7550
## How to Use
7651
Balloon supports both Kotlin and Java projects, so you can reference it by your language.
7752

buildSrc/src/main/kotlin/com/skydoves/balloon/Configuration.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ object Configuration {
2323
const val minSdkBenchmark = 23
2424
const val majorVersion = 1
2525
const val minorVersion = 6
26-
const val patchVersion = 5
26+
const val patchVersion = 6
2727
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
28-
const val versionCode = 60
28+
const val versionCode = 61
2929
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
3030
const val artifactGroup = "com.github.skydoves"
3131
}

0 commit comments

Comments
 (0)