Skip to content

Commit

Permalink
Version 1.109
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev authored Dec 11, 2024
1 parent 85b7bcc commit 9282c4d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -43,7 +43,7 @@ To configure your Maven project, add the following code to your pom.xml file:
<dependency>
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<version>1.108</version>
<version>1.109</version>
</dependency>
...
</dependencies>
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pom-central.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.108</version>
<version>1.109</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down
2 changes: 1 addition & 1 deletion pom-pack.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.108</version>
<version>1.109</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.github.javadev</groupId>
<artifactId>underscore</artifactId>
<packaging>jar</packaging>
<version>1.108-SNAPSHOT</version>
<version>1.109-SNAPSHOT</version>
<name>java port of Underscore.js</name>
<description>The java port of Underscore.js</description>
<url>https://github.com/javadev/underscore-java</url>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/github/underscore/FunctionsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void defer() {
return null;
});
assertEquals(0, counter[0].intValue(), "incr was debounced");
await().atLeast(90, TimeUnit.MILLISECONDS)
await().atMost(120, TimeUnit.MILLISECONDS)
.until(
() -> {
assertEquals(1, counter[0].intValue(), "incr was debounced");
Expand Down

0 comments on commit 9282c4d

Please sign in to comment.