Skip to content

Commit

Permalink
Prepare for release 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jul 28, 2024
1 parent 7ca1166 commit 8efce2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 28 deletions.
27 changes: 1 addition & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,35 +43,10 @@ Add the dependency below to your **module**'s `build.gradle` file:

```kotlin
dependencies {
implementation("com.github.skydoves:balloon:1.6.5")
implementation("com.github.skydoves:balloon:1.6.6")
}
```

## SNAPSHOT
[![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>

<details>
<summary>See how to import the snapshot</summary>

### Including the SNAPSHOT
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.
```kotlin
repositories {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
```

Next, add the below dependency to your **module**'s `build.gradle` file.
```kotlin
dependencies {
implementation("com.github.skydoves:balloon:1.6.5-SNAPSHOT")
}
```

</details>

## How to Use
Balloon supports both Kotlin and Java projects, so you can reference it by your language.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ object Configuration {
const val minSdkBenchmark = 23
const val majorVersion = 1
const val minorVersion = 6
const val patchVersion = 5
const val patchVersion = 6
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 60
const val versionCode = 61
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 8efce2d

Please sign in to comment.