Skip to content

Commit 59eba18

Browse files
authored
5.0.2-release-notes (#5102)
2 parents a024547 + ed0e817 commit 59eba18

File tree

9 files changed

+69
-9
lines changed

9 files changed

+69
-9
lines changed

scripts/release.sh

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,19 @@ cp -f "site/static/javadoc/${MVN_VERSION_RELEASE}.tgz" "site/static/javadoc/late
264264
git add --all
265265
git commit -s -a -m "javadocs for ${MVN_VERSION_RELEASE}"
266266
git push --set-upstream origin "${RELEASE_NOTES_BRANCH}"
267-
gh pr create -B main --title "${RELEASE_NOTES_BRANCH}" --body "Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.\n\n - [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/) finished publishing the release\n - [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4JRDF4J%20${MVN_VERSION_RELEASE}) (include announcement)"
267+
BODY_CONTENT=$(cat <<EOF
268+
Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.
269+
270+
- [ ] check that downloads.md is updated
271+
- [ ] check that the release notes file is updated
272+
- [ ] check that the news item file is updated
273+
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-ossrh/) finished publishing the release
274+
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-sdk/) finished publishing the sdk
275+
- [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4J%20${MVN_VERSION_RELEASE}) (include announcement)
276+
EOF
277+
)
278+
279+
gh pr create -B main --title "${MVN_VERSION_RELEASE} release notes" --body "$BODY_CONTENT"
268280

269281
echo "Javadocs are in git branch ${RELEASE_NOTES_BRANCH}"
270282

site/content/download.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ toc: true
55

66
You can either retrieve RDF4J via Apache Maven, or download the SDK or onejar directly.
77

8-
## RDF4J 5.0.1 (latest)
8+
## RDF4J 5.0.2 (latest)
99

10-
RDF4J 5.0.1 is our latest stable release. It requires Java 11 minimally.
11-
For details on what’s new and how to upgrade, see the [release and upgrade notes](/release-notes/5.0.1).
10+
RDF4J 5.0.2 is our latest stable release. It requires Java 11 minimally.
11+
For details on what’s new and how to upgrade, see the [release and upgrade notes](/release-notes/5.0.2).
1212

13-
- [RDF4J 5.0.1 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.1-sdk.zip)<br/>
13+
- [RDF4J 5.0.2 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.2-sdk.zip)<br/>
1414
Full Eclipse RDF4J SDK, containing all libraries, RDF4J Server, Workbench, and Console applications, and Javadoc API.
1515

16-
- [RDF4J 5.0.1 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.1-onejar.jar)<br/>
16+
- [RDF4J 5.0.2 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.2-onejar.jar)<br/>
1717
Single jar file for easy inclusion of the full RDF4J toolkit in your Java project.
1818

1919
- [RDF4J artifacts](https://search.maven.org/search?q=org.eclipse.rdf4j) on the [Maven Central Repository](http://search.maven.org/)
@@ -28,7 +28,7 @@ You can include RDF4J as a Maven dependency in your Java project by including th
2828
<dependency>
2929
<groupId>org.eclipse.rdf4j</groupId>
3030
<artifactId>rdf4j-bom</artifactId>
31-
<version>5.0.1</version>
31+
<version>5.0.2</version>
3232
<type>pom</type>
3333
<scope>import</scope>
3434
</dependency>
@@ -54,8 +54,8 @@ which artifacts RDF4J provides.
5454

5555
### RDF4J 4.3
5656

57-
- [RDF4J 4.3.12 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.12-sdk.zip)
58-
- [RDF4J 4.3.12 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.12-onejar.jar)
57+
- [RDF4J 4.3.13 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.13-sdk.zip)
58+
- [RDF4J 4.3.13 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.13-onejar.jar)
5959

6060

6161
### RDF4J 4.2

site/content/news/rdf4j-4313.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "RDF4J 4.3.13 released"
3+
date: 2024-07-24T10:33:31+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 4.3.13 is now available. This is a patch release with backported fixes and improvements from 5.0.0 and 5.0.1.
8+
9+
For more details, have a look at the [release notes](/release-notes/4.3.13).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/#rdf4j-43)
14+
- [release notes](/release-notes/4.3.13).

site/content/news/rdf4j-502.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "RDF4J 5.0.2 released"
3+
date: 2024-08-02T19:33:05+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 5.0.2 is now available. This is a patch release fixing 1 bugs.
8+
9+
For more details, have a look at the [release notes](/release-notes/5.0.2).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/)
14+
- [release notes](/release-notes/5.0.2).

site/content/release-notes/4.3.13.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "4.3.13"
3+
toc: true
4+
---
5+
RDF4J 4.3.13 is a patch release with backported fixes and improvements from 5.0.0 and 5.0.1.
6+
7+
For a complete overview, see [all issues fixed in 4.3.13](https://github.com/eclipse/rdf4j/milestone/106?closed=1).
8+
9+
Some dependencies have been bumped to mitigate security vulnerabilities. See: https://github.com/eclipse-rdf4j/rdf4j/issues/5088
10+
11+
### Acknowledgements
12+
13+
This release was made possible by contributions from Bart Hanssens, Håvard M. Ottestad and Florian Kleedorfer.

site/content/release-notes/5.0.2.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "5.0.2"
3+
toc: true
4+
---
5+
RDF4J 5.0.2 is a patch release that fixes 1 issue.
6+
7+
For a complete overview, see [all issues fixed in 5.0.2](https://github.com/eclipse/rdf4j/milestone/109?closed=1).

site/static/javadoc/4.3.13.tgz

7.29 MB
Binary file not shown.

site/static/javadoc/5.0.2.tgz

7.03 MB
Binary file not shown.

site/static/javadoc/latest.tgz

-1.27 KB
Binary file not shown.

0 commit comments

Comments
 (0)