Skip to content

Commit 0fcfa7f

Browse files
Bump version to 4.3.0
1 parent 07f67cc commit 0fcfa7f

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ In `build.gradle` of shared module, include the following dependency
4242

4343
```gradle
4444
dependencies {
45-
implementation("io.github.pushpalroy:jetlime:4.2.0")
45+
implementation("io.github.pushpalroy:jetlime:4.3.0")
4646
}
4747
```
4848

jetlime/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dokka {
2323

2424
kotlin {
2525
cocoapods {
26-
version = "4.2.0"
26+
version = "4.3.0"
2727
summary = "JetLime KMP Library"
2828
homepage = "https://github.com/pushpalroy/JetLime"
2929
ios.deploymentTarget = "14.0"
@@ -149,7 +149,7 @@ mavenPublishing {
149149
val artifactId = "jetlime"
150150

151151
// Define coordinates for the published artifact
152-
coordinates("io.github.pushpalroy", artifactId, "4.2.0")
152+
coordinates("io.github.pushpalroy", artifactId, "4.3.0")
153153

154154
// Configure POM metadata for the published artifact
155155
pom {

jetlime/jetlime.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'jetlime'
3-
spec.version = '4.2.0'
3+
spec.version = '4.3.0'
44
spec.homepage = 'https://github.com/pushpalroy/JetLime'
55
spec.source = { :http=> ''}
66
spec.authors = ''

sample/composeApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ kotlin {
9090
implementation(project(":jetlime"))
9191

9292
// Uncomment for maven testing
93-
// implementation("io.github.pushpalroy:jetlime:4.1.1")
93+
// implementation("io.github.pushpalroy:jetlime:4.3.0")
9494
}
9595
desktopMain.dependencies {
9696
implementation(compose.desktop.currentOs)

scripts/add_git_tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Script to add annotated tag with version number to the main branch
44
# This script should be executed with the correct version number after every release to MavenCentral
5-
TAG="4.2.0"
5+
TAG="4.3.0"
66
COMMENT="Release $TAG"
77
BRANCH="main"
88

0 commit comments

Comments
 (0)