diff --git a/README.md b/README.md index f64885647..193f50512 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # LeetCode-in-Kotlin -[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-kotlin?style=flat-square)](https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-kotlin/1.34) +[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/leetcode-in-kotlin?style=flat-square)](https://central.sonatype.com/artifact/com.github.javadev/leetcode-in-kotlin/1.35) [![MIT License](http://img.shields.io/badge/license-MIT-green.svg) ](https://github.com/javadev/leetcode-in-kotlin/blob/main/LICENSE) [![Java CI with Maven](https://github.com/javadev/LeetCode-in-Kotlin/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/LeetCode-in-Kotlin/actions/workflows/maven.yml) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=javadev_LeetCode-in-Kotlin&metric=sqale_rating)](https://sonarcloud.io/summary/overall?id=javadev_LeetCode-in-Kotlin) @@ -19,7 +19,7 @@ To configure your Maven project, add the following code to your pom.xml file: com.github.javadev leetcode-in-kotlin - 1.34 + 1.35 ... @@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file: Gradle configuration: ```groovy -implementation 'com.github.javadev:leetcode-in-kotlin:1.34' +implementation 'com.github.javadev:leetcode-in-kotlin:1.35' ``` > ["For coding interview preparation, LeetCode is one of the best online resource providing a rich library of more than 300 real coding interview questions for you to practice from using one of the 7 supported languages - C, C++, Java, Python, C#, JavaScript, Ruby."](https://www.quora.com/How-effective-is-Leetcode-for-preparing-for-technical-interviews) diff --git a/build.gradle.kts b/build.gradle.kts index 0f8da7956..22857c166 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - kotlin("jvm") version "2.1.10" + kotlin("jvm") version "2.1.20" jacoco id("org.sonarqube") version "5.1.0.4882" id("com.diffplug.spotless") version "6.25.0" @@ -14,7 +14,7 @@ repositories { } dependencies { - implementation("org.jetbrains.kotlin:kotlin-stdlib:2.1.10") + implementation("org.jetbrains.kotlin:kotlin-stdlib:2.1.20") testImplementation("org.junit.jupiter:junit-jupiter:[5.11.3,)") testImplementation("org.hamcrest:hamcrest-core:[3.0,)") testImplementation("org.zapodot:embedded-db-junit-jupiter:[2.2.0,)") @@ -27,7 +27,7 @@ tasks.test { } group = "com.github.javadev" -version = "1.34-SNAPSHOT" +version = "1.35-SNAPSHOT" description = "leetcode-in-kotlin" java.sourceCompatibility = JavaVersion.VERSION_17 java.targetCompatibility = JavaVersion.VERSION_17 diff --git a/pom-central.xml b/pom-central.xml index 9289eef5c..7b17c0a0c 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-kotlin jar - 1.34 + 1.35 leetcode-in-kotlin Kotlin-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Kotlin diff --git a/pom.xml b/pom.xml index a4b46a341..849b170b9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.javadev leetcode-in-kotlin jar - 1.34-SNAPSHOT + 1.35-SNAPSHOT leetcode-in-kotlin Kotlin-based LeetCode algorithm problem solutions, regularly updated https://github.com/javadev/LeetCode-in-Kotlin