Skip to content

Commit 85eacf0

Browse files
authored
Update oss-parent dep to v69, fix test warnings, bump version to 5.2.0-SNAPSHOT (#138)
1 parent a8f7c10 commit 85eacf0

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
java_version: ['8', '11', '17', '21']
22+
java_version: ['8', '11', '17', '21', '25']
2323
env:
2424
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2525
steps:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.fasterxml</groupId>
88
<artifactId>oss-parent</artifactId>
9-
<version>68</version>
9+
<version>69</version>
1010
</parent>
1111
<groupId>com.fasterxml.uuid</groupId>
1212
<artifactId>java-uuid-generator</artifactId>
@@ -15,7 +15,7 @@
1515
-->
1616
<packaging>bundle</packaging>
1717
<name>Java UUID Generator</name>
18-
<version>5.1.2-SNAPSHOT</version>
18+
<version>5.2.0-SNAPSHOT</version>
1919
<description>
2020
Java UUID Generator (JUG) is a Java library for generating
2121
Universally Unique IDentifiers, UUIDs (see http://en.wikipedia.org/wiki/UUID).

release-notes/VERSION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Project: java-uuid-generator
44
Releases
55
============================================================================
66

7+
5.2.0 (not yet released)
8+
9+
- Update to `oss-parent` v69
10+
711
5.1.1 (26-Sep-2025)
812

913
#122: RFC-4122 Obsoleted by RFC-9562 (document change)

src/test/java/com/fasterxml/uuid/JugNamedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
import java.util.List;
1515
import java.util.UUID;
1616

17+
import static org.hamcrest.MatcherAssert.assertThat;
1718
import static org.hamcrest.core.StringContains.containsString;
1819
import static org.junit.Assert.assertEquals;
19-
import static org.junit.Assert.assertThat;
2020

2121
@RunWith(Parameterized.class)
2222
public class JugNamedTest {

src/test/java/com/fasterxml/uuid/JugNoArgsTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import java.lang.reflect.Array;
1212
import java.util.*;
1313

14+
import static org.hamcrest.MatcherAssert.assertThat;
1415
import static org.hamcrest.core.StringContains.containsString;
1516
import static org.junit.Assert.*;
1617

0 commit comments

Comments
 (0)