File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
src/test/java/com/github/underscore Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 strategy :
1111 matrix :
12- java : [17, 21, 22 ]
12+ java : [17, 21, 23 ]
1313
1414 steps :
1515 - uses : actions/checkout@v4
3232 runs-on : windows-latest
3333 strategy :
3434 matrix :
35- java : [17, 21, 22 ]
35+ java : [17, 21, 23 ]
3636
3737 steps :
3838 - uses : actions/checkout@v4
5050 runs-on : macOS-latest
5151 strategy :
5252 matrix :
53- java : [17, 21, 22 ]
53+ java : [17, 21, 23 ]
5454
5555 steps :
5656 - uses : actions/checkout@v4
@@ -70,11 +70,11 @@ jobs:
7070 - uses : actions/checkout@v4
7171 with :
7272 fetch-depth : 0
73- - name : Set up JDK 17
73+ - name : Set up JDK 21
7474 uses : actions/setup-java@v4
7575 with :
7676 distribution : ' corretto'
77- java-version : 17
77+ java-version : 21
7878 cache : ' maven'
7979 - name : Cache SonarCloud packages
8080 uses : actions/cache@v3
Original file line number Diff line number Diff line change 33underscore-java17
44=================
55
6- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.github.javadev/underscore17.svg )] ( https://central.sonatype.com/artifact/com.github.javadev/underscore17/1.62 )
6+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.github.javadev/underscore17.svg )] ( https://central.sonatype.com/artifact/com.github.javadev/underscore17/1.63 )
77[ ![ MIT License] ( http://img.shields.io/badge/license-MIT-green.svg ) ] ( https://github.com/javadev/underscore-java17/blob/main/LICENSE )
88[ ![ Java CI] ( https://github.com/javadev/underscore-java17/actions/workflows/maven.yml/badge.svg )] ( https://github.com/javadev/underscore-java17/actions/workflows/maven.yml )
99[ ![ CodeQL] ( https://github.com/javadev/underscore-java17/actions/workflows/codeql-analysis.yml/badge.svg )] ( https://github.com/javadev/underscore-java17/actions/workflows/codeql-analysis.yml )
@@ -31,7 +31,7 @@ Include the following in your `pom.xml` for Maven:
3131 <dependency>
3232 <groupId>com.github.javadev</groupId>
3333 <artifactId>underscore17</artifactId>
34- <version>1.62 </version>
34+ <version>1.63 </version>
3535 </dependency>
3636 ...
3737</dependencies>
@@ -40,7 +40,7 @@ Include the following in your `pom.xml` for Maven:
4040Gradle:
4141
4242``` groovy
43- implementation 'com.github.javadev:underscore17:1.62 '
43+ implementation 'com.github.javadev:underscore17:1.63 '
4444```
4545
4646### Usage
Original file line number Diff line number Diff line change 44 <groupId >com.github.javadev</groupId >
55 <artifactId >underscore17</artifactId >
66 <packaging >jar</packaging >
7- <version >1.62 </version >
7+ <version >1.63 </version >
88 <name >java 17 port of Underscore.js</name >
99 <description >The java 17 port of Underscore.js</description >
1010 <url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 44 <groupId >com.github.javadev</groupId >
55 <artifactId >underscore21</artifactId >
66 <packaging >jar</packaging >
7- <version >1.62 </version >
7+ <version >1.63 </version >
88 <name >java 21 port of Underscore.js</name >
99 <description >The java 21 port of Underscore.js</description >
1010 <url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 44 <groupId >com.github.javadev</groupId >
55 <artifactId >underscore17</artifactId >
66 <packaging >jar</packaging >
7- <version >1.62 </version >
7+ <version >1.63 </version >
88 <name >java 17 port of Underscore.js</name >
99 <description >The java 17 port of Underscore.js</description >
1010 <url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 44 <groupId >com.github.javadev</groupId >
55 <artifactId >underscore17</artifactId >
66 <packaging >jar</packaging >
7- <version >1.62 -SNAPSHOT</version >
7+ <version >1.63 -SNAPSHOT</version >
88 <name >java 17 port of Underscore.js</name >
99 <description >The java 17 port of Underscore.js</description >
1010 <url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff 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" );
You can’t perform that action at this time.
0 commit comments