Skip to content

Commit c62e15e

Browse files
authored
Introduced version 1.16
1 parent 9d45a98 commit c62e15e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: 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.15)
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.16)
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.15</version>
22+
<version>1.16</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.15'
31+
implementation 'com.github.javadev:leetcode-in-kotlin:1.16'
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)

Diff for: build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tasks.test {
2727
}
2828

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

Diff for: pom-central.xml

+1-1
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.15</version>
7+
<version>1.16</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>

Diff for: pom.xml

+1-1
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.15-SNAPSHOT</version>
7+
<version>1.16-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>

0 commit comments

Comments
 (0)