Skip to content

Commit 1c158fa

Browse files
committed
Release 5.0
1 parent 12fe6ca commit 1c158fa

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,17 @@ repositories {
3535
releasesOnly()
3636
}
3737
content {
38-
includeGroup 'io.sf.carte'
39-
includeGroup 'io.sf.jclf'
38+
// Include all the groups used by popular io.sf.* projects
39+
includeGroupByRegex 'io\\.sf\\..*'
40+
41+
// Alternatively:
42+
//includeGroup 'io.sf.carte'
43+
//includeGroup 'io.sf.jclf'
4044
}
4145
}
4246
}
4347
```
44-
please use this repository **only** for the artifact groups listed in the `includeGroup` statements.
48+
please use this repository only for the artifact groups listed in the `includeGroup` statements.
4549

4650
Then, in your `build.gradle` file:
4751
```groovy
@@ -62,7 +66,7 @@ and optional library packages are the following:
6266
### Compile-time dependencies
6367

6468
- The [css4j](https://github.com/css4j/css4j/releases) library (and its transitive
65-
dependencies); version 4.0 or higher is recommended (compatibility with 5.0 or
69+
dependencies); version 5.0 or higher is recommended (compatibility with 6.0 or
6670
higher is likely but not guaranteed).
6771

6872
### Test dependencies

RELEASE_NOTES.md

+18-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,30 @@
1-
# css4j-AWT version 4.0 Release Notes
1+
# css4j-AWT version 5.0 Release Notes
22

3-
### March 30, 2023
3+
### October 5, 2024
44

55
<br/>
66

77
## Highlights
88

9-
### Upgrade to css4j 4.0
9+
### Major version bumped to 5
1010

11-
This library now benefits from the color upgrades in css4j 4.0.
11+
To emphasize that it is compatible with css4j 5.0, major version was bumped to 5.
12+
But in fact this library is essentially the same as version 4.0.
1213

1314
<br/>
1415

1516
## Detail of changes
1617

17-
- Upgrade to css4j 4.0
18-
- Upgrade to slf4j 2.0.7
19-
- Upgrade to extra-java-module-info 1.3
20-
- Upgrade Gradle wrapper to 8.0.2
21-
- Tests: convert the tests to JUnit 5.
18+
- Use diamond operator.
19+
- Convert to advanced for loop in `isFontFamilyAvailable`.
20+
- Update the Javadoc package description.
21+
- Bump copyright year to 2024.
22+
- Add scm section to Maven POM data.
23+
- Prefer css4j 5.0 in build.
24+
- Upgrade to xml-dtd 4.3.
25+
- Upgrade JUnit to version 5.11.1.
26+
- Upgrade Gradle wrapper to 8.10.2.
27+
- Use slf4j 2.0.16 in tests.
28+
- Upgrade to extra-java-module-info version 1.9.
29+
- Upgrade to wrapper-validation action v4.
30+
- Default to Linux line endings for source files.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = 'io.sf.carte'
8-
version = '4.0.1-SNAPSHOT'
8+
version = '5.0'
99

1010
description = 'css4j-awt'
1111

0 commit comments

Comments
 (0)