Skip to content

Commit

Permalink
Merge pull request #36 from pushpalroy/release_2.2.1
Browse files Browse the repository at this point in the history
Release 2.2.1
  • Loading branch information
pushpalroy authored Jul 30, 2024
2 parents 5455705 + 84cd231 commit e18b004
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 17 deletions.
10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

> A simple yet highly customizable library for showing a TimeLine interface in Jetpack Compose.
[![Compose Compiler](https://img.shields.io/badge/Compose%20Compiler-1.5.10-blue?style=for-the-badge&logo=appveyor)](https://developer.android.com/jetpack/androidx/releases/compose)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.22-blue.svg?color=blue&style=for-the-badge)
[![Compose Compiler](https://img.shields.io/badge/Compose%20Compiler-1.5.14-blue?style=for-the-badge&logo=appveyor)](https://developer.android.com/jetpack/androidx/releases/compose)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.24-blue.svg?color=blue&style=for-the-badge)
[![Maven Central](https://img.shields.io/maven-central/v/io.github.pushpalroy/jetlime?style=for-the-badge&logo=appveyor)](https://search.maven.org/artifact/io.github.pushpalroy/jetlime)
![Stars](https://img.shields.io/github/stars/pushpalroy/jetlime?color=yellowgreen&style=for-the-badge)
![Forks](https://img.shields.io/github/forks/pushpalroy/jetlime?color=yellowgreen&style=for-the-badge)
Expand All @@ -30,7 +30,7 @@ In `build.gradle` of app module, include the following dependency

```gradle
dependencies {
implementation("io.github.pushpalroy:jetlime:2.2.0")
implementation("io.github.pushpalroy:jetlime:2.2.1")
}
```

Expand Down
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
composeBom = "2024.03.00"
compose-compiler = "1.5.10"
activityCompose = "1.8.2"
agp = "8.3.1"
coreKtx = "1.12.0"
jetlime = "2.2.0"
composeBom = "2024.06.00"
compose-compiler = "1.5.14"
activityCompose = "1.9.1"
agp = "8.4.2"
coreKtx = "1.13.1"
jetlime = "2.2.1"
junit = "4.13.2"
junitVersion = "1.1.5"
kotlin = "1.9.22"
junitVersion = "1.2.1"
kotlin = "1.9.24"
kotlinxCollectionsImmutable = "0.3.7"
lifecycleRuntimeKtx = "2.7.0"
lifecycleRuntimeKtx = "2.8.4"
truth = "1.3.0"
vanniktech = "0.27.0"
dokka = "1.9.10"
spotless = "6.25.0"
androidxTest = "1.5.2"
androidxTest = "1.6.1"

[libraries]
# Android
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Feb 29 20:52:44 CST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion jetlime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ mavenPublishing {
publishToMavenCentral(SonatypeHost.S01)
signAllPublications()
val artifactId = "jetlime"
coordinates("io.github.pushpalroy", artifactId, "2.2.0")
coordinates("io.github.pushpalroy", artifactId, "2.2.1")

pom {
name.set(artifactId)
Expand Down
2 changes: 1 addition & 1 deletion scripts/add_git_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Script to add annotated tag with version number to the main branch
# This script should be executed with the correct version number after every release to MavenCentral
TAG="2.2.0"
TAG="2.2.1"
COMMENT="Release $TAG"
BRANCH="main"

Expand Down

0 comments on commit e18b004

Please sign in to comment.