Skip to content

Commit

Permalink
Merge pull request #40 from pushpalroy/release_2.3.0
Browse files Browse the repository at this point in the history
Release 2.3.0
  • Loading branch information
pushpalroy authored Sep 1, 2024
2 parents 155cfae + a8592f8 commit 091c895
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
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.

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.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)
[![Compose Compiler](https://img.shields.io/badge/Compose%20Compiler-1.5.15-blue?style=for-the-badge&logo=appveyor)](https://developer.android.com/jetpack/androidx/releases/compose)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.25-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 Down Expand Up @@ -32,7 +32,7 @@ In `build.gradle` of app module, include the following dependency

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

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
composeBom = "2024.06.00"
compose-compiler = "1.5.14"
composeBom = "2024.08.00"
compose-compiler = "1.5.15"
activityCompose = "1.9.1"
agp = "8.4.2"
coreKtx = "1.13.1"
jetlime = "2.2.1"
jetlime = "2.3.0"
junit = "4.13.2"
junitVersion = "1.2.1"
kotlin = "1.9.24"
kotlin = "1.9.25"
kotlinxCollectionsImmutable = "0.3.7"
lifecycleRuntimeKtx = "2.8.4"
truth = "1.3.0"
vanniktech = "0.27.0"
dokka = "1.9.10"
spotless = "6.25.0"
androidxTest = "1.6.1"
androidxTest = "1.6.2"

[libraries]
# Android
Expand Down
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.1")
coordinates("io.github.pushpalroy", artifactId, "2.3.0")

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.1"
TAG="2.3.0"
COMMENT="Release $TAG"
BRANCH="main"

Expand Down

0 comments on commit 091c895

Please sign in to comment.