Skip to content

Commit c9710c8

Browse files
authored
Version 1.123
1 parent e0b2d7f commit c9710c8

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
underscore-java
44
===============
55

6-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.122)
6+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.123)
77
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/javadev/underscore-java/blob/main/LICENSE)
88
[![Java CI](https://github.com/javadev/underscore-java/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/maven.yml)
99
[![CodeQL](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml)
@@ -41,7 +41,7 @@ To configure your Maven project, add the following code to your pom.xml file:
4141
<dependency>
4242
<groupId>com.github.javadev</groupId>
4343
<artifactId>underscore</artifactId>
44-
<version>1.122</version>
44+
<version>1.123</version>
4545
</dependency>
4646
...
4747
</dependencies>
@@ -50,7 +50,7 @@ To configure your Maven project, add the following code to your pom.xml file:
5050
Gradle configuration:
5151

5252
```groovy
53-
implementation 'com.github.javadev:underscore:1.122'
53+
implementation 'com.github.javadev:underscore:1.123'
5454
```
5555

5656
### Usage

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>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.122</version>
7+
<version>1.123</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</url>

pom-pack.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>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.122</version>
7+
<version>1.123</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</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>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.122-SNAPSHOT</version>
7+
<version>1.123-SNAPSHOT</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</url>

src/test/java/com/github/underscore/LodashTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,8 +754,7 @@ void fetchPut() {
754754
+ " \"fireBreath\": 10"
755755
+ " }"
756756
+ "}");
757-
assertTrue(
758-
resultChain.item().replace("\r\n", "\n").startsWith("\n<!DOCTYPE html>\n<html lang=\"en\">"));
757+
assertTrue(resultChain.item().isEmpty());
759758
}
760759

761760
static class TestInputStream extends java.io.InputStream {

0 commit comments

Comments
 (0)