diff --git a/scripts/release-notes.sh b/scripts/release-notes.sh index 8b024f07e03..ee1ebabd2a1 100755 --- a/scripts/release-notes.sh +++ b/scripts/release-notes.sh @@ -52,12 +52,12 @@ if [[ ${M} == "" ]]; then echo "Please make sure that you have cleaned up and closed the milestone connected to ${MVN_VERSION_RELEASE}"; read -n 1 -srp "Press any key to continue (ctrl+c to cancel)"; printf "\n\n"; - SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse/rdf4j/milestones?state=open | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') + SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse-rdf4j/rdf4j/milestones?state=open | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') echo "${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}" if ! [[ ${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED} == "" ]]; then echo ""; echo "Milestone not closed!"; - echo "https://github.com/eclipse/rdf4j/milestone/${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}"; + echo "https://github.com/eclipse-rdf4j/rdf4j/milestone/${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}"; exit 1; fi fi @@ -66,11 +66,11 @@ echo "Version: ${MVN_VERSION_RELEASE}"; # first try to get the GITHUB_MILESTONE number from the closed milestones export GITHUB_MILESTONE -GITHUB_MILESTONE=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse/rdf4j/milestones?state=closed\&direction=desc\&sort=title | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') +GITHUB_MILESTONE=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse-rdf4j/rdf4j/milestones?state=closed\&direction=desc\&sort=title | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') # then try to get the GITHUB_MILESTONE number from the open milestones (this should only be relevant for RDF4J Milestone builds). if [[ ${GITHUB_MILESTONE} == "" ]]; then - GITHUB_MILESTONE=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse/rdf4j/milestones | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') + GITHUB_MILESTONE=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse-rdf4j/rdf4j/milestones | jq '.[] | select(.title == "'"${MVN_VERSION_RELEASE}"'") | .number') fi if [[ ${GITHUB_MILESTONE} == "" ]]; then @@ -80,9 +80,9 @@ if [[ ${GITHUB_MILESTONE} == "" ]]; then fi export NUMBER_OF_CLOSED_ISSUES -NUMBER_OF_CLOSED_ISSUES=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse/rdf4j/milestones/${GITHUB_MILESTONE} | jq '.closed_issues') +NUMBER_OF_CLOSED_ISSUES=$(curl -s -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/eclipse-rdf4j/rdf4j/milestones/${GITHUB_MILESTONE} | jq '.closed_issues') -echo "Milestone: https://github.com/eclipse/rdf4j/milestone/${GITHUB_MILESTONE}" +echo "Milestone: https://github.com/eclipse-rdf4j/rdf4j/milestone/${GITHUB_MILESTONE}" echo "Number of closed issues: ${NUMBER_OF_CLOSED_ISSUES}" export DATETIME diff --git a/site/content/download.md b/site/content/download.md index 84f5b8e641f..4cbf50d33a1 100644 --- a/site/content/download.md +++ b/site/content/download.md @@ -5,15 +5,15 @@ toc: true You can either retrieve RDF4J via Apache Maven, or download the SDK or onejar directly. -## RDF4J 4.3.5 (latest) +## RDF4J 4.3.6 (latest) -RDF4J 4.3.5 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/4.3.5). +RDF4J 4.3.6 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/4.3.6). -- [RDF4J 4.3.5 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.5-sdk.zip)
+- [RDF4J 4.3.6 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.6-sdk.zip)
Full Eclipse RDF4J SDK, containing all libraries, RDF4J Server, Workbench, and Console applications, and Javadoc API. -- [RDF4J 4.3.5 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.5-onejar.jar)
+- [RDF4J 4.3.6 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.6-onejar.jar)
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/) @@ -28,7 +28,7 @@ You can include RDF4J as a Maven dependency in your Java project by including th org.eclipse.rdf4j rdf4j-bom - 4.3.5 + 4.3.6 pom import diff --git a/site/content/news/rdf4j-436.md b/site/content/news/rdf4j-436.md new file mode 100644 index 00000000000..7a349a4e525 --- /dev/null +++ b/site/content/news/rdf4j-436.md @@ -0,0 +1,14 @@ +--- +title: "RDF4J 4.3.6 released" +date: 2023-08-27T23:13:16+0200 +layout: "single" +categories: ["news"] +--- +RDF4J 4.3.6 is now available. This is a patch release fixing 4 bugs. + +For more details, have a look at the [release notes](/release-notes/4.3.6). + +### Links + +- [Download RDF4J](/download/) +- [release notes](/release-notes/4.3.6). diff --git a/site/content/release-notes/4.3.6.md b/site/content/release-notes/4.3.6.md new file mode 100644 index 00000000000..ffeeaaf2d10 --- /dev/null +++ b/site/content/release-notes/4.3.6.md @@ -0,0 +1,11 @@ +--- +title: "4.3.6" +toc: true +--- +RDF4J 4.3.6 is a patch release that fixes 4 issues. + +For a complete overview, see [all issues fixed in 4.3.6](https://github.com/eclipse/rdf4j/milestone/99?closed=1). + +### Acknowledgements + +This release was made possible by contributions from Jerven Bolleman and Håvard Mikkelsen Ottestad. diff --git a/site/static/javadoc/4.3.6.tgz b/site/static/javadoc/4.3.6.tgz new file mode 100644 index 00000000000..63f2e5297d6 Binary files /dev/null and b/site/static/javadoc/4.3.6.tgz differ diff --git a/site/static/javadoc/latest.tgz b/site/static/javadoc/latest.tgz index d0b4498b296..63f2e5297d6 100644 Binary files a/site/static/javadoc/latest.tgz and b/site/static/javadoc/latest.tgz differ