Skip to content

Commit 9282c4d

Browse files
authored
Version 1.109
1 parent 85b7bcc commit 9282c4d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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.108)
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.109)
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)
@@ -43,7 +43,7 @@ To configure your Maven project, add the following code to your pom.xml file:
4343
<dependency>
4444
<groupId>com.github.javadev</groupId>
4545
<artifactId>underscore</artifactId>
46-
<version>1.108</version>
46+
<version>1.109</version>
4747
</dependency>
4848
...
4949
</dependencies>
@@ -52,7 +52,7 @@ To configure your Maven project, add the following code to your pom.xml file:
5252
Gradle configuration:
5353

5454
```groovy
55-
implementation 'com.github.javadev:underscore:1.108'
55+
implementation 'com.github.javadev:underscore:1.109'
5656
```
5757

5858
### 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.108</version>
7+
<version>1.109</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.108</version>
7+
<version>1.109</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.108-SNAPSHOT</version>
7+
<version>1.109-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/FunctionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ void defer() {
199199
return null;
200200
});
201201
assertEquals(0, counter[0].intValue(), "incr was debounced");
202-
await().atLeast(90, TimeUnit.MILLISECONDS)
202+
await().atMost(120, TimeUnit.MILLISECONDS)
203203
.until(
204204
() -> {
205205
assertEquals(1, counter[0].intValue(), "incr was debounced");

0 commit comments

Comments
 (0)