Skip to content

Commit 8903c85

Browse files
authored
4.3.6-release-notes (#4764)
2 parents fafdfbb + 40369d1 commit 8903c85

6 files changed

Lines changed: 37 additions & 12 deletions

File tree

scripts/release-notes.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ if [[ ${M} == "" ]]; then
5252
echo "Please make sure that you have cleaned up and closed the milestone connected to ${MVN_VERSION_RELEASE}";
5353
read -n 1 -srp "Press any key to continue (ctrl+c to cancel)"; printf "\n\n";
5454

55-
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')
55+
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')
5656
echo "${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}"
5757
if ! [[ ${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED} == "" ]]; then
5858
echo "";
5959
echo "Milestone not closed!";
60-
echo "https://github.com/eclipse/rdf4j/milestone/${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}";
60+
echo "https://github.com/eclipse-rdf4j/rdf4j/milestone/${SHOULD_BE_NULL_IF_MILESTONE_IS_CLOSED}";
6161
exit 1;
6262
fi
6363
fi
@@ -66,11 +66,11 @@ echo "Version: ${MVN_VERSION_RELEASE}";
6666

6767
# first try to get the GITHUB_MILESTONE number from the closed milestones
6868
export GITHUB_MILESTONE
69-
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')
69+
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')
7070

7171
# then try to get the GITHUB_MILESTONE number from the open milestones (this should only be relevant for RDF4J Milestone builds).
7272
if [[ ${GITHUB_MILESTONE} == "" ]]; then
73-
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')
73+
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')
7474
fi
7575

7676
if [[ ${GITHUB_MILESTONE} == "" ]]; then
@@ -80,9 +80,9 @@ if [[ ${GITHUB_MILESTONE} == "" ]]; then
8080
fi
8181

8282
export NUMBER_OF_CLOSED_ISSUES
83-
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')
83+
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')
8484

85-
echo "Milestone: https://github.com/eclipse/rdf4j/milestone/${GITHUB_MILESTONE}"
85+
echo "Milestone: https://github.com/eclipse-rdf4j/rdf4j/milestone/${GITHUB_MILESTONE}"
8686
echo "Number of closed issues: ${NUMBER_OF_CLOSED_ISSUES}"
8787

8888
export DATETIME

site/content/download.md

Lines changed: 6 additions & 6 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 4.3.5 (latest)
8+
## RDF4J 4.3.6 (latest)
99

10-
RDF4J 4.3.5 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/4.3.5).
10+
RDF4J 4.3.6 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/4.3.6).
1212

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

16-
- [RDF4J 4.3.5 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.5-onejar.jar)<br/>
16+
- [RDF4J 4.3.6 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.6-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>4.3.5</version>
31+
<version>4.3.6</version>
3232
<type>pom</type>
3333
<scope>import</scope>
3434
</dependency>

site/content/news/rdf4j-436.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.6 released"
3+
date: 2023-08-27T23:13:16+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 4.3.6 is now available. This is a patch release fixing 4 bugs.
8+
9+
For more details, have a look at the [release notes](/release-notes/4.3.6).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/)
14+
- [release notes](/release-notes/4.3.6).
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "4.3.6"
3+
toc: true
4+
---
5+
RDF4J 4.3.6 is a patch release that fixes 4 issues.
6+
7+
For a complete overview, see [all issues fixed in 4.3.6](https://github.com/eclipse/rdf4j/milestone/99?closed=1).
8+
9+
### Acknowledgements
10+
11+
This release was made possible by contributions from Jerven Bolleman and Håvard Mikkelsen Ottestad.

site/static/javadoc/4.3.6.tgz

7.26 MB
Binary file not shown.

site/static/javadoc/latest.tgz

5.01 KB
Binary file not shown.

0 commit comments

Comments
 (0)