Skip to content

Commit

Permalink
5.0.2-release-notes (eclipse-rdf4j#5102)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmottestad authored Aug 3, 2024
2 parents a024547 + ed0e817 commit 59eba18
Show file tree
Hide file tree
Showing 9 changed files with 69 additions and 9 deletions.
14 changes: 13 additions & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,19 @@ cp -f "site/static/javadoc/${MVN_VERSION_RELEASE}.tgz" "site/static/javadoc/late
git add --all
git commit -s -a -m "javadocs for ${MVN_VERSION_RELEASE}"
git push --set-upstream origin "${RELEASE_NOTES_BRANCH}"
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)"
BODY_CONTENT=$(cat <<EOF
Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.
- [ ] check that downloads.md is updated
- [ ] check that the release notes file is updated
- [ ] check that the news item file is updated
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-ossrh/) finished publishing the release
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-sdk/) finished publishing the sdk
- [ ] 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)
EOF
)

gh pr create -B main --title "${MVN_VERSION_RELEASE} release notes" --body "$BODY_CONTENT"

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

Expand Down
16 changes: 8 additions & 8 deletions site/content/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ toc: true

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

## RDF4J 5.0.1 (latest)
## RDF4J 5.0.2 (latest)

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

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

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

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

### RDF4J 4.3

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


### RDF4J 4.2
Expand Down
14 changes: 14 additions & 0 deletions site/content/news/rdf4j-4313.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "RDF4J 4.3.13 released"
date: 2024-07-24T10:33:31+0200
layout: "single"
categories: ["news"]
---
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.

For more details, have a look at the [release notes](/release-notes/4.3.13).
<!--more-->
### Links

- [Download RDF4J](/download/#rdf4j-43)
- [release notes](/release-notes/4.3.13).
14 changes: 14 additions & 0 deletions site/content/news/rdf4j-502.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: "RDF4J 5.0.2 released"
date: 2024-08-02T19:33:05+0200
layout: "single"
categories: ["news"]
---
RDF4J 5.0.2 is now available. This is a patch release fixing 1 bugs.

For more details, have a look at the [release notes](/release-notes/5.0.2).
<!--more-->
### Links

- [Download RDF4J](/download/)
- [release notes](/release-notes/5.0.2).
13 changes: 13 additions & 0 deletions site/content/release-notes/4.3.13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "4.3.13"
toc: true
---
RDF4J 4.3.13 is a patch release with backported fixes and improvements from 5.0.0 and 5.0.1.

For a complete overview, see [all issues fixed in 4.3.13](https://github.com/eclipse/rdf4j/milestone/106?closed=1).

Some dependencies have been bumped to mitigate security vulnerabilities. See: https://github.com/eclipse-rdf4j/rdf4j/issues/5088

### Acknowledgements

This release was made possible by contributions from Bart Hanssens, Håvard M. Ottestad and Florian Kleedorfer.
7 changes: 7 additions & 0 deletions site/content/release-notes/5.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "5.0.2"
toc: true
---
RDF4J 5.0.2 is a patch release that fixes 1 issue.

For a complete overview, see [all issues fixed in 5.0.2](https://github.com/eclipse/rdf4j/milestone/109?closed=1).
Binary file added site/static/javadoc/4.3.13.tgz
Binary file not shown.
Binary file added site/static/javadoc/5.0.2.tgz
Binary file not shown.
Binary file modified site/static/javadoc/latest.tgz
Binary file not shown.

0 comments on commit 59eba18

Please sign in to comment.