Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6b5276a

Browse files
authored
Version 1.39
1 parent bb676bf commit 6b5276a

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

‎README.md

Lines changed: 3 additions & 3 deletions
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.38)
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.39)
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.38</version>
22+
<version>1.39</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.38'
31+
implementation 'com.github.javadev:leetcode-in-kotlin:1.39'
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

Lines changed: 3 additions & 3 deletions
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.21")
18-
testImplementation("org.junit.jupiter:junit-jupiter:[5.13.2,)")
18+
testImplementation("org.junit.jupiter:junit-jupiter:[5.13.3,)")
1919
testImplementation("org.hamcrest:hamcrest-core:[3.0,)")
2020
testImplementation("org.zapodot:embedded-db-junit-jupiter:2.2.2")
21-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.13.2,)")
21+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:[1.13.3,)")
2222
}
2323

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

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

‎pom-central.xml

Lines changed: 5 additions & 5 deletions
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.38</version>
7+
<version>1.39</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>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>org.junit.jupiter</groupId>
7676
<artifactId>junit-jupiter-engine</artifactId>
77-
<version>[5.13.2,)</version>
77+
<version>[5.13.3,)</version>
7878
</dependency>
7979
</dependencies>
8080
</plugin>
@@ -179,19 +179,19 @@
179179
<dependency>
180180
<groupId>org.junit.jupiter</groupId>
181181
<artifactId>junit-jupiter-api</artifactId>
182-
<version>[5.13.2,)</version>
182+
<version>[5.13.3,)</version>
183183
<scope>test</scope>
184184
</dependency>
185185
<dependency>
186186
<groupId>org.junit.jupiter</groupId>
187187
<artifactId>junit-jupiter-engine</artifactId>
188-
<version>[5.13.2,)</version>
188+
<version>[5.13.3,)</version>
189189
<scope>test</scope>
190190
</dependency>
191191
<dependency>
192192
<groupId>org.junit.platform</groupId>
193193
<artifactId>junit-platform-launcher</artifactId>
194-
<version>[1.13.2,)</version>
194+
<version>[1.13.3,)</version>
195195
<scope>test</scope>
196196
</dependency>
197197
<dependency>

‎pom.xml

Lines changed: 5 additions & 5 deletions
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.38-SNAPSHOT</version>
7+
<version>1.39-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.13.2,)</version>
76+
<version>[5.13.3,)</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.13.2,)</version>
143+
<version>[5.13.3,)</version>
144144
<scope>test</scope>
145145
</dependency>
146146
<dependency>
147147
<groupId>org.junit.jupiter</groupId>
148148
<artifactId>junit-jupiter-engine</artifactId>
149-
<version>[5.13.2,)</version>
149+
<version>[5.13.3,)</version>
150150
<scope>test</scope>
151151
</dependency>
152152
<dependency>
153153
<groupId>org.junit.platform</groupId>
154154
<artifactId>junit-platform-launcher</artifactId>
155-
<version>[1.13.2,)</version>
155+
<version>[1.13.3,)</version>
156156
<scope>test</scope>
157157
</dependency>
158158
<dependency>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /