From f6c121b0727c5ac726b2f00d1b786b5965eae81c Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:50:23 +0200 Subject: [PATCH 1/6] Version 1.109 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 796038e8..4e507d40 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.108) +[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.109) [![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) @@ -43,7 +43,7 @@ To configure your Maven project, add the following code to your pom.xml file: com.github.javadev underscore - 1.108 + 1.109 ... @@ -52,7 +52,7 @@ To configure your Maven project, add the following code to your pom.xml file: Gradle configuration: ```groovy -implementation 'com.github.javadev:underscore:1.108' +implementation 'com.github.javadev:underscore:1.109' ``` ### Usage From 01ef1545c3d9be1a245b639755ec140f2efb2867 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:51:41 +0200 Subject: [PATCH 2/6] Update pom-central.xml --- pom-central.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom-central.xml b/pom-central.xml index 7ae7e995..c2fb53db 100644 --- a/pom-central.xml +++ b/pom-central.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.108 + 1.109 java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java From bffdf040d2dcc3f35c0bc4a692f8576d58c524a3 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:52:03 +0200 Subject: [PATCH 3/6] Update pom-pack.xml --- pom-pack.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom-pack.xml b/pom-pack.xml index a8f2ae8d..ee0f6ddd 100644 --- a/pom-pack.xml +++ b/pom-pack.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.108 + 1.109 java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java From 0eaf93f42cc134d224e532ca197ad72a833d4e83 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:52:27 +0200 Subject: [PATCH 4/6] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 081c0494..336dc2ca 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.javadev underscore jar - 1.108-SNAPSHOT + 1.109-SNAPSHOT java port of Underscore.js The java port of Underscore.js https://github.com/javadev/underscore-java From e6baab4cd39a8568c16f121e6cb6f38e958894a9 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:55:56 +0200 Subject: [PATCH 5/6] Update FunctionsTest.java --- src/test/java/com/github/underscore/FunctionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/github/underscore/FunctionsTest.java b/src/test/java/com/github/underscore/FunctionsTest.java index 4eb7b642..a9a8e267 100644 --- a/src/test/java/com/github/underscore/FunctionsTest.java +++ b/src/test/java/com/github/underscore/FunctionsTest.java @@ -199,7 +199,7 @@ void defer() { return null; }); assertEquals(0, counter[0].intValue(), "incr was debounced"); - await().atLeast(90, TimeUnit.MILLISECONDS) + await().atLeast(120, TimeUnit.MILLISECONDS) .until( () -> { assertEquals(1, counter[0].intValue(), "incr was debounced"); From 7df1a9a45e0269ca5b63cff82532c4d53187729d Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Wed, 11 Dec 2024 08:57:41 +0200 Subject: [PATCH 6/6] Update FunctionsTest.java --- src/test/java/com/github/underscore/FunctionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/github/underscore/FunctionsTest.java b/src/test/java/com/github/underscore/FunctionsTest.java index a9a8e267..60206d55 100644 --- a/src/test/java/com/github/underscore/FunctionsTest.java +++ b/src/test/java/com/github/underscore/FunctionsTest.java @@ -199,7 +199,7 @@ void defer() { return null; }); assertEquals(0, counter[0].intValue(), "incr was debounced"); - await().atLeast(120, TimeUnit.MILLISECONDS) + await().atMost(120, TimeUnit.MILLISECONDS) .until( () -> { assertEquals(1, counter[0].intValue(), "incr was debounced");