Skip to content

Commit

Permalink
Prepare for release 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Nov 18, 2023
1 parent 648f571 commit 89aec5b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ If you want to use Balloon in your Jetpack Compose project, check out the **[Bal
### Gradle
Add the dependency below to your **module**'s `build.gradle` file:

```gradle
```kotlin
dependencies {
implementation "com.github.skydoves:balloon:1.6.2"
implementation("com.github.skydoves:balloon:1.6.3")
}
```

Expand All @@ -57,16 +57,16 @@ dependencies {
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.
```Gradle
```kotlin
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
```

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

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 = 2
const val patchVersion = 3
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 57
const val versionCode = 58
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 89aec5b

Please sign in to comment.