File tree 7 files changed +13
-13
lines changed
src/test/java/com/github/underscore
7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
strategy :
11
11
matrix :
12
- java : [17, 21, 22 ]
12
+ java : [17, 21, 23 ]
13
13
14
14
steps :
15
15
- uses : actions/checkout@v4
32
32
runs-on : windows-latest
33
33
strategy :
34
34
matrix :
35
- java : [17, 21, 22 ]
35
+ java : [17, 21, 23 ]
36
36
37
37
steps :
38
38
- uses : actions/checkout@v4
50
50
runs-on : macOS-latest
51
51
strategy :
52
52
matrix :
53
- java : [17, 21, 22 ]
53
+ java : [17, 21, 23 ]
54
54
55
55
steps :
56
56
- uses : actions/checkout@v4
@@ -70,11 +70,11 @@ jobs:
70
70
- uses : actions/checkout@v4
71
71
with :
72
72
fetch-depth : 0
73
- - name : Set up JDK 17
73
+ - name : Set up JDK 21
74
74
uses : actions/setup-java@v4
75
75
with :
76
76
distribution : ' corretto'
77
- java-version : 17
77
+ java-version : 21
78
78
cache : ' maven'
79
79
- name : Cache SonarCloud packages
80
80
uses : actions/cache@v3
Original file line number Diff line number Diff line change 3
3
underscore-java17
4
4
=================
5
5
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 )
7
7
[ ![ MIT License] ( http://img.shields.io/badge/license-MIT-green.svg ) ] ( https://github.com/javadev/underscore-java17/blob/main/LICENSE )
8
8
[ ![ Java CI] ( https://github.com/javadev/underscore-java17/actions/workflows/maven.yml/badge.svg )] ( https://github.com/javadev/underscore-java17/actions/workflows/maven.yml )
9
9
[ ![ 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:
31
31
<dependency>
32
32
<groupId>com.github.javadev</groupId>
33
33
<artifactId>underscore17</artifactId>
34
- <version>1.62 </version>
34
+ <version>1.63 </version>
35
35
</dependency>
36
36
...
37
37
</dependencies>
@@ -40,7 +40,7 @@ Include the following in your `pom.xml` for Maven:
40
40
Gradle:
41
41
42
42
``` groovy
43
- implementation 'com.github.javadev:underscore17:1.62 '
43
+ implementation 'com.github.javadev:underscore17:1.63 '
44
44
```
45
45
46
46
### Usage
Original file line number Diff line number Diff line change 4
4
<groupId >com.github.javadev</groupId >
5
5
<artifactId >underscore17</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >1.62 </version >
7
+ <version >1.63 </version >
8
8
<name >java 17 port of Underscore.js</name >
9
9
<description >The java 17 port of Underscore.js</description >
10
10
<url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 4
4
<groupId >com.github.javadev</groupId >
5
5
<artifactId >underscore21</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >1.62 </version >
7
+ <version >1.63 </version >
8
8
<name >java 21 port of Underscore.js</name >
9
9
<description >The java 21 port of Underscore.js</description >
10
10
<url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 4
4
<groupId >com.github.javadev</groupId >
5
5
<artifactId >underscore17</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >1.62 </version >
7
+ <version >1.63 </version >
8
8
<name >java 17 port of Underscore.js</name >
9
9
<description >The java 17 port of Underscore.js</description >
10
10
<url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change 4
4
<groupId >com.github.javadev</groupId >
5
5
<artifactId >underscore17</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >1.62 -SNAPSHOT</version >
7
+ <version >1.63 -SNAPSHOT</version >
8
8
<name >java 17 port of Underscore.js</name >
9
9
<description >The java 17 port of Underscore.js</description >
10
10
<url >https://github.com/javadev/underscore-java17</url >
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ void defer() {
199
199
return null ;
200
200
});
201
201
assertEquals (0 , counter [0 ].intValue (), "incr was debounced" );
202
- await ().atLeast ( 90 , TimeUnit .MILLISECONDS )
202
+ await ().atMost ( 120 , TimeUnit .MILLISECONDS )
203
203
.until (
204
204
() -> {
205
205
assertEquals (1 , counter [0 ].intValue (), "incr was debounced" );
You can’t perform that action at this time.
0 commit comments