From ffefa2677a74784b83379546098e7ebfbf56bf33 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Sun, 9 Aug 2026 13:35:44 +0300 Subject: [PATCH 1/2] Version 1.123 --- README.md | 6 +++--- pom-central.xml | 2 +- pom-pack.xml | 2 +- pom.xml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 30bfceaa..83681f01 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ underscore-java =============== -[![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) +[![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) [![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/javadev/underscore-java/blob/main/LICENSE) [![Java CI](https://github.com/javadev/underscore-java/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/maven.yml) [![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: com.github.javadev underscore - 1.122 + 1.123 ... @@ -50,7 +50,7 @@ To configure your Maven project, add the following code to your pom.xml file: Gradle configuration: ```groovy -implementation 'com.github.javadev:underscore:1.122' +implementation 'com.github.javadev:underscore:1.123' ``` ### Usage diff --git a/pom-central.xml b/pom-central.xml index e025f4cc..71f3504e 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.122 + 1.123 java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java diff --git a/pom-pack.xml b/pom-pack.xml index e2110282..f6817762 100644 --- a/pom-pack.xml +++ b/pom-pack.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.122 + 1.123 java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java diff --git a/pom.xml b/pom.xml index 6254e5a7..69897c37 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.122-SNAPSHOT + 1.123-SNAPSHOT java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java From 7ddec83b8b0a05159a591b32381854968d768068 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Sun, 9 Aug 2026 16:41:47 +0300 Subject: [PATCH 2/2] Fixed test --- src/test/java/com/github/underscore/LodashTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/com/github/underscore/LodashTest.java b/src/test/java/com/github/underscore/LodashTest.java index d8ea99ac..40f16fb6 100644 --- a/src/test/java/com/github/underscore/LodashTest.java +++ b/src/test/java/com/github/underscore/LodashTest.java @@ -754,8 +754,7 @@ void fetchPut() { + " \"fireBreath\": 10" + " }" + "}"); - assertTrue( - resultChain.item().replace("\r\n", "\n").startsWith("\n\n")); + assertTrue(resultChain.item().isEmpty()); } static class TestInputStream extends java.io.InputStream {