Skip to content

Commit 606fe5e

Browse files
committed
[RelEng] Update link to N&N entries in doc bundle in release preparation
This also avoids the need to enforce a qualifier update explicitly as that change then implies a qualifier-update. Complements - eclipse-platform/eclipse.platform.releng.aggregator#3509
1 parent 16efb6c commit 606fe5e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

prepareNextDevCycle.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
# and applies the changes required individually for SWT.
1919
# The calling pipeline also defines environment variables usable in this script.
2020

21-
echo "Qualifier update for ${NEXT_RELEASE_VERSION}" > 'org.eclipse.pde.doc.user/forceQualifierUpdate.txt'
21+
# Update the link to N&N entries, which also implies the otherwise explicitly required qualifier update
22+
whatsNewFile='org.eclipse.pde.doc.user/whatsNew/pde_whatsnew.html'
23+
sed --expression "s|Eclipse ${PREVIOUS_RELEASE_VERSION}|Eclipse ${NEXT_RELEASE_VERSION}|" -i "${whatsNewFile}"
24+
sed --expression "s|news/${PREVIOUS_RELEASE_VERSION}/pde.html|news/${NEXT_RELEASE_VERSION}/pde.html|" -i "${whatsNewFile}"
2225

23-
24-
git commit --all --message "Qualifier update of doc bundles for ${NEXT_RELEASE_VERSION}"
26+
git commit --all --message "Reference New and Noteworthy for ${NEXT_RELEASE_VERSION} in PDE documentation"

0 commit comments

Comments
 (0)