Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This is a minor release.

### ✨ Merged pull requests
* [#290](https://github.com/pmd/pmd-eclipse-plugin/pull/290): chore: Add pmd-css - [Andreas Dangel](https://github.com/adangel) (@adangel)
* [#291](https://github.com/pmd/pmd-eclipse-plugin/pull/291): chore: Improve do-release.sh - [Andreas Dangel](https://github.com/adangel) (@adangel)

### 📦 Dependency updates

Expand Down
10 changes: 9 additions & 1 deletion do-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ echo
echo "Press enter to continue... (or CTRL+C to cancel)"
read -r

echo
echo "Has the PMD version been upgraded? Did this version introduce a new language?"
echo "If yes, then update net.sourceforge.pmd.eclipse.plugin/META-INF/MANIFEST.MF and"
echo "net.sourceforge.pmd.eclipse.plugin/build.properties to add the new pmd module jar."
echo
echo "Press enter to continue... (or CTRL+C to cancel)"
read -r

echo Update the ReleaseNotes with the release date and version:
echo
echo "## $(date -u +%d-%B-%Y): ${RELEASE_VERSION}.${BUILDQUALIFIER}"
Expand Down Expand Up @@ -121,7 +129,7 @@ echo
echo Checkout the release branch and build the plugin
git checkout "pmd-eclipse-plugin-rb-${RELEASE_VERSION}"

./mvnw clean verify
./mvnw clean verify -U

# extract the release notes
BEGIN_LINE=$(grep -n "^## " ReleaseNotes.md|head -1|cut -d ":" -f 1)
Expand Down
Loading