Skip to content

Commit 4d242dd

Browse files
authored
Introduced version 1.9
1 parent e553a86 commit 4d242dd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include the following in your `pom.xml` for Maven:
1919
<dependency>
2020
<groupId>com.github.javadev</groupId>
2121
<artifactId>leetcode-in-kotlin</artifactId>
22-
<version>1.8</version>
22+
<version>1.9</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ Include the following in your `pom.xml` for Maven:
2828
Gradle:
2929

3030
```groovy
31-
implementation 'com.github.javadev:leetcode-in-kotlin:1.8'
31+
implementation 'com.github.javadev:leetcode-in-kotlin:1.9'
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tasks.test {
2727
}
2828

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

pom-central.xml

Lines changed: 1 addition & 1 deletion
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.8</version>
7+
<version>1.9</version>
88
<name>leetcode-in-kotlin</name>
99
<description>Kotlin Solution for LeetCode algorithm problems, continually updating</description>
1010
<url>https://github.com/javadev/LeetCode-in-Kotlin</url>

pom.xml

Lines changed: 1 addition & 1 deletion
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.8-SNAPSHOT</version>
7+
<version>1.9-SNAPSHOT</version>
88
<name>leetcode-in-kotlin</name>
99
<description>Kotlin Solution for LeetCode algorithm problems, continually updating</description>
1010
<url>https://github.com/javadev/LeetCode-in-Kotlin</url>

0 commit comments

Comments
 (0)