File tree 3 files changed +14
-10
lines changed
3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 4
4
branches :
5
5
- master
6
6
- " 4.3"
7
+ - " 3.0"
7
8
paths-ignore :
8
9
- " README.md"
9
10
- " release-notes/*"
@@ -18,15 +19,14 @@ jobs:
18
19
strategy :
19
20
fail-fast : false
20
21
matrix :
21
- # Alas, JDK14 can't be yet used as JUG builds for Java 6
22
- java_version : ['8', '11']
22
+ java_version : ['8', '11', '17', '21']
23
23
os : ['ubuntu-20.04']
24
24
env :
25
25
JAVA_OPTS : " -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
26
26
steps :
27
- - uses : actions/checkout@v3.5.3
27
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
28
28
- name : Set up JDK
29
- uses : actions/setup-java@v3
29
+ uses : actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
30
30
with :
31
31
distribution : " temurin"
32
32
java-version : ${{ matrix.java_version }}
38
38
run : ./mvnw -B -q -ff -ntp test
39
39
- name : Publish code coverage
40
40
if : github.event_name != 'pull_request' && matrix.java_version == '8'
41
- uses : codecov/codecov-action@v3
41
+ uses : codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
42
42
with :
43
43
token : ${{ secrets.CODECOV_TOKEN }}
44
44
file : ./target/site/jacoco/jacoco.xml
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.fasterxml</groupId >
8
8
<artifactId >oss-parent</artifactId >
9
- <version >54 </version >
9
+ <version >55 </version >
10
10
</parent >
11
11
<groupId >com.fasterxml.uuid</groupId >
12
12
<artifactId >java-uuid-generator</artifactId >
15
15
-->
16
16
<packaging >bundle</packaging >
17
17
<name >Java UUID Generator</name >
18
- <version >4.3.1 -SNAPSHOT</version >
18
+ <version >5.0.0 -SNAPSHOT</version >
19
19
<description >
20
20
Java UUID Generator (JUG) is a Java library for generating
21
21
Universally Unique IDentifiers, UUIDs (see http://en.wikipedia.org/wiki/UUID).
@@ -28,7 +28,7 @@ JUG supports all 3 official UUID generation methods.
28
28
<connection >scm:git:git://github.com/cowtowncoder/java-uuid-generator.git</connection >
29
29
<url >https://github.com/cowtowncoder/java-uuid-generator</url >
30
30
<
developerConnection >scm:git:
[email protected] :cowtowncoder/java-uuid-generator.git</
developerConnection >
31
- <tag >java-uuid-generator-4.3.0 </tag >
31
+ <tag >HEAD </tag >
32
32
</scm >
33
33
<developers >
34
34
<developer >
@@ -91,8 +91,8 @@ JUG supports all 3 official UUID generation methods.
91
91
<artifactId >maven-compiler-plugin</artifactId >
92
92
<version >${version.plugin.compiler} </version >
93
93
<configuration >
94
- <source >1.6 </source >
95
- <target >1.6 </target >
94
+ <source >1.8 </source >
95
+ <target >1.8 </target >
96
96
</configuration >
97
97
</plugin >
98
98
<plugin ><!-- plug-in to attach source bundle in repo -->
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ Project: java-uuid-generator
4
4
Releases
5
5
============================================================================
6
6
7
+ 5.0.0 (not yet released)
8
+
9
+ #53: Increase JDK baseline to JDK 8
10
+
7
11
4.3.0 (12-Sep-2023)
8
12
9
13
#78: TimeBasedEpochGenerator (UUIDv7) can't be provided a `UUIDClock`
You can’t perform that action at this time.
0 commit comments