Skip to content

Commit 4469963

Browse files
authored
Version 1.9
1 parent ce03975 commit 4469963

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
underscore-kotlin
22
=================
3-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore-kotlin.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore-kotlin/1.8)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore-kotlin.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore-kotlin/1.9)
44
[![Java CI with Maven](https://github.com/kotlindev/underscore-kotlin/actions/workflows/maven.yml/badge.svg)](https://github.com/kotlindev/underscore-kotlin/actions/workflows/maven.yml)
55
[![javadoc](https://javadoc.io/badge2/com.github.javadev/underscore-kotlin/javadoc.svg)](https://javadoc.io/doc/com.github.javadev/underscore-kotlin)
66

@@ -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>underscore-kotlin</artifactId>
22-
<version>1.8</version>
22+
<version>1.9</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:underscore-kotlin:1.8'
31+
implementation 'com.github.javadev:underscore-kotlin:1.9'
3232
```
3333

3434
### Usage

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>underscore-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.8</version>
7+
<version>1.9</version>
88
<name>kotlin port of Underscore.js</name>
99
<description>The kotlin port of Underscore.js</description>
1010
<url>https://github.com/kotlindev/underscore-kotlin</url>
@@ -42,19 +42,19 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-surefire-plugin</artifactId>
45-
<version>3.1.2</version>
45+
<version>3.2.5</version>
4646
<dependencies>
4747
<dependency>
4848
<groupId>org.junit.jupiter</groupId>
4949
<artifactId>junit-jupiter-engine</artifactId>
50-
<version>[5.10.3,)</version>
50+
<version>[5.11.1,)</version>
5151
</dependency>
5252
</dependencies>
5353
</plugin>
5454
<plugin>
5555
<groupId>org.apache.maven.plugins</groupId>
5656
<artifactId>maven-jar-plugin</artifactId>
57-
<version>3.3.0</version>
57+
<version>3.4.0</version>
5858
<configuration>
5959
<archive>
6060
<manifestEntries>
@@ -191,7 +191,7 @@
191191
<plugin>
192192
<groupId>org.apache.maven.plugins</groupId>
193193
<artifactId>maven-gpg-plugin</artifactId>
194-
<version>1.6</version>
194+
<version>3.2.7</version>
195195
<executions>
196196
<execution>
197197
<id>sign-artifacts</id>
@@ -244,13 +244,13 @@
244244
<dependency>
245245
<groupId>org.junit.jupiter</groupId>
246246
<artifactId>junit-jupiter-api</artifactId>
247-
<version>[5.10.3,)</version>
247+
<version>[5.11.1,)</version>
248248
<scope>test</scope>
249249
</dependency>
250250
<dependency>
251251
<groupId>org.junit.platform</groupId>
252252
<artifactId>junit-platform-launcher</artifactId>
253-
<version>[1.10.3,)</version>
253+
<version>[1.11.1,)</version>
254254
<scope>test</scope>
255255
</dependency>
256256
<dependency>

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.8-SNAPSHOT</version>
7+
<version>1.9-SNAPSHOT</version>
88
<name>kotlin port of Underscore.js</name>
99
<description>The kotlin port of Underscore.js</description>
1010
<url>https://github.com/kotlindev/underscore-kotlin</url>
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>org.junit.jupiter</groupId>
4949
<artifactId>junit-jupiter-engine</artifactId>
50-
<version>[5.10.3,)</version>
50+
<version>[5.11.1,)</version>
5151
</dependency>
5252
</dependencies>
5353
</plugin>
@@ -198,13 +198,13 @@
198198
<dependency>
199199
<groupId>org.junit.jupiter</groupId>
200200
<artifactId>junit-jupiter-api</artifactId>
201-
<version>[5.10.3,)</version>
201+
<version>[5.11.1,)</version>
202202
<scope>test</scope>
203203
</dependency>
204204
<dependency>
205205
<groupId>org.junit.platform</groupId>
206206
<artifactId>junit-platform-launcher</artifactId>
207-
<version>[1.10.3,)</version>
207+
<version>[1.11.1,)</version>
208208
<scope>test</scope>
209209
</dependency>
210210
<dependency>

0 commit comments

Comments
 (0)