Skip to content

Commit 3979e46

Browse files
authored
Version 1.36
1 parent f39e73c commit 3979e46

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LeetCode-in-Kotlin
22

3-
[![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)
3+
[![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.36)
44
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg) ](https://github.com/javadev/leetcode-in-kotlin/blob/main/LICENSE)
55
[![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)
66
[![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:
1919
<dependency>
2020
<groupId>com.github.javadev</groupId>
2121
<artifactId>leetcode-in-kotlin</artifactId>
22-
<version>1.35</version>
22+
<version>1.36</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file:
2828
Gradle configuration:
2929

3030
```groovy
31-
implementation 'com.github.javadev:leetcode-in-kotlin:1.35'
31+
implementation 'com.github.javadev:leetcode-in-kotlin:1.36'
3232
```
3333

3434
> ["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)

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ repositories {
1515

1616
dependencies {
1717
implementation("org.jetbrains.kotlin:kotlin-stdlib:2.1.20")
18-
testImplementation("org.junit.jupiter:junit-jupiter:[5.12.0,)")
18+
testImplementation("org.junit.jupiter:junit-jupiter:[5.12.2,)")
1919
testImplementation("org.hamcrest:hamcrest-core:[3.0,)")
2020
testImplementation("org.zapodot:embedded-db-junit-jupiter:2.2.0")
21-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.12.0,)")
21+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.12.2,)")
2222
}
2323

2424
tasks.test {
@@ -27,7 +27,7 @@ tasks.test {
2727
}
2828

2929
group = "com.github.javadev"
30-
version = "1.35-SNAPSHOT"
30+
version = "1.36-SNAPSHOT"
3131
description = "leetcode-in-kotlin"
3232
java.sourceCompatibility = JavaVersion.VERSION_17
3333
java.targetCompatibility = JavaVersion.VERSION_17

pom-central.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>leetcode-in-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.35</version>
7+
<version>1.36</version>
88
<name>leetcode-in-kotlin</name>
99
<description>Kotlin-based LeetCode algorithm problem solutions, regularly updated</description>
1010
<url>https://github.com/javadev/LeetCode-in-Kotlin</url>
@@ -27,7 +27,7 @@
2727
<url>https://github.com/javadev/LeetCode-in-Kotlin</url>
2828
</scm>
2929
<properties>
30-
<kotlin.version>2.1.10</kotlin.version>
30+
<kotlin.version>2.1.20</kotlin.version>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
</properties>
3333
<ciManagement>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>org.junit.jupiter</groupId>
7676
<artifactId>junit-jupiter-engine</artifactId>
77-
<version>[5.12.0,)</version>
77+
<version>[5.12.2,)</version>
7878
</dependency>
7979
</dependencies>
8080
</plugin>
@@ -149,19 +149,19 @@
149149
<dependency>
150150
<groupId>org.junit.jupiter</groupId>
151151
<artifactId>junit-jupiter-api</artifactId>
152-
<version>[5.12.0,)</version>
152+
<version>[5.12.2,)</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
156156
<groupId>org.junit.jupiter</groupId>
157157
<artifactId>junit-jupiter-engine</artifactId>
158-
<version>[5.12.0,)</version>
158+
<version>[5.12.2,)</version>
159159
<scope>test</scope>
160160
</dependency>
161161
<dependency>
162162
<groupId>org.junit.platform</groupId>
163163
<artifactId>junit-platform-launcher</artifactId>
164-
<version>[1.12.0,)</version>
164+
<version>[1.12.2,)</version>
165165
<scope>test</scope>
166166
</dependency>
167167
<dependency>
@@ -173,7 +173,7 @@
173173
<dependency>
174174
<groupId>org.zapodot</groupId>
175175
<artifactId>embedded-db-junit-jupiter</artifactId>
176-
<version>[2.2.0,)</version>
176+
<version>2.2.0</version>
177177
<scope>test</scope>
178178
</dependency>
179179
</dependencies>

pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>leetcode-in-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.35-SNAPSHOT</version>
7+
<version>1.36-SNAPSHOT</version>
88
<name>leetcode-in-kotlin</name>
99
<description>Kotlin-based LeetCode algorithm problem solutions, regularly updated</description>
1010
<url>https://github.com/javadev/LeetCode-in-Kotlin</url>
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>org.junit.jupiter</groupId>
7575
<artifactId>junit-jupiter-engine</artifactId>
76-
<version>[5.12.0,)</version>
76+
<version>[5.12.2,)</version>
7777
</dependency>
7878
</dependencies>
7979
</plugin>
@@ -140,19 +140,19 @@
140140
<dependency>
141141
<groupId>org.junit.jupiter</groupId>
142142
<artifactId>junit-jupiter-api</artifactId>
143-
<version>[5.12.0,)</version>
143+
<version>[5.12.2,)</version>
144144
<scope>test</scope>
145145
</dependency>
146146
<dependency>
147147
<groupId>org.junit.jupiter</groupId>
148148
<artifactId>junit-jupiter-engine</artifactId>
149-
<version>[5.12.0,)</version>
149+
<version>[5.12.2,)</version>
150150
<scope>test</scope>
151151
</dependency>
152152
<dependency>
153153
<groupId>org.junit.platform</groupId>
154154
<artifactId>junit-platform-launcher</artifactId>
155-
<version>[1.12.0,)</version>
155+
<version>[1.12.2,)</version>
156156
<scope>test</scope>
157157
</dependency>
158158
<dependency>
@@ -164,7 +164,7 @@
164164
<dependency>
165165
<groupId>org.zapodot</groupId>
166166
<artifactId>embedded-db-junit-jupiter</artifactId>
167-
<version>[2.2.0,)</version>
167+
<version>2.2.0</version>
168168
<scope>test</scope>
169169
</dependency>
170170
</dependencies>

0 commit comments

Comments
 (0)