From 4ac1283c3855f7442c8f6b4af14da1af1d7d73b7 Mon Sep 17 00:00:00 2001 From: Pushpal Roy Date: Sun, 1 Sep 2024 00:08:38 -0600 Subject: [PATCH 1/2] [lib] release: update version to 2.3.0 --- README.md | 2 +- gradle/libs.versions.toml | 8 ++++---- jetlime/build.gradle.kts | 2 +- scripts/add_git_tag.sh | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7b5cb69..819f25c 100644 --- a/README.md +++ b/README.md @@ -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") } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 9dbe5af..85dbc60 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,10 +1,10 @@ [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" @@ -14,7 +14,7 @@ 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 diff --git a/jetlime/build.gradle.kts b/jetlime/build.gradle.kts index 7e1cc2d..374b07c 100644 --- a/jetlime/build.gradle.kts +++ b/jetlime/build.gradle.kts @@ -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) diff --git a/scripts/add_git_tag.sh b/scripts/add_git_tag.sh index 34a7443..744b902 100644 --- a/scripts/add_git_tag.sh +++ b/scripts/add_git_tag.sh @@ -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" From a8592f83e8fab60c27f254d091b76fc1f98921d5 Mon Sep 17 00:00:00 2001 From: Pushpal Roy Date: Sun, 1 Sep 2024 00:24:00 -0600 Subject: [PATCH 2/2] [lib] bump kotlin to 1.9.25 --- .idea/kotlinc.xml | 2 +- README.md | 4 ++-- gradle/libs.versions.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index 148fdd2..4cb7457 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/README.md b/README.md index 819f25c..e8bd609 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 85dbc60..2cf519c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,7 +7,7 @@ coreKtx = "1.13.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"