Skip to content

Commit 72f3d52

Browse files
committed
Release 5.0
1 parent eb2b7a3 commit 72f3d52

File tree

3 files changed

+26
-13
lines changed

3 files changed

+26
-13
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,17 @@ repositories {
3838
releasesOnly()
3939
}
4040
content {
41-
includeGroup 'io.sf.carte'
42-
includeGroup 'io.sf.jclf'
41+
// Include all the groups used by popular io.sf.* projects
42+
includeGroupByRegex 'io\\.sf\\..*'
43+
44+
// Alternatively:
45+
//includeGroup 'io.sf.carte'
46+
//includeGroup 'io.sf.jclf'
4347
}
4448
}
4549
}
4650
```
47-
please use this repository **only** for the artifact groups listed in the `includeGroup` statements.
51+
please use this repository only for the artifact groups listed in the `includeGroup` statements.
4852

4953
Then, in your `build.gradle` file:
5054
```groovy
@@ -65,8 +69,7 @@ and optional library packages are the following:
6569
### Compile-time dependencies
6670

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

7174
- The [xml-dtd](https://github.com/css4j/xml-dtd) library; version 4.1.1 or
7275
higher is recommended.

RELEASE_NOTES.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# css4j-agent version 4.0 Release Notes
1+
# css4j-agent version 5.0 Release Notes
22

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

55
<br/>
66

@@ -15,8 +15,18 @@ Updated Public Suffix List.
1515
## Detail of changes
1616

1717
- Update to latest public suffix list.
18-
- Upgrade to css4j 4.0
19-
- Upgrade to slf4j-api 2.0.7
20-
- Upgrade to extra-java-module-info 1.3
21-
- Upgrade Gradle wrapper to 8.0.2
22-
- Tests: convert the tests to JUnit 5.
18+
- Use diamond operator.
19+
- Small refactor in `DefaultUserAgent`.
20+
- Use advanced for loop in `ResourceDownloader`.
21+
- Add scm section to Maven POM data.
22+
- Prefer css4j 5.0.
23+
- Upgrade to xml-dtd 4.3.
24+
- Upgrade JUnit to version 5.11.1.
25+
- Use slf4j 2.0.16.
26+
- Upgrade to extra-java-module-info version 1.9.
27+
- Upgrade to actions/checkout@v4.
28+
- Upgrade to actions/setup-java v4.
29+
- Gradle: switch to gradle/actions/wrapper-validation.
30+
- Upgrade Gradle wrapper to 8.10.2.
31+
- Default to Linux line endings for source files.
32+
- Bump copyright year to 2024.

build.gradle

Lines changed: 1 addition & 1 deletion
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-agent'
1111

0 commit comments

Comments
 (0)