2015-09-18 11:25:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-05-27 20:33:03 +02:00
|
|
|
# Make sure, everything is English...
|
|
|
|
export LANG=C.UTF8
|
|
|
|
|
2015-09-18 11:25:30 +02:00
|
|
|
# verify the current directory
|
|
|
|
if [ ! -f pom.xml -o ! -d ../pmd.github.io ]; then
|
2016-01-07 10:14:24 +01:00
|
|
|
echo "You seem to be in the wrong working directory or you don't have pmd.github.io checked out..."
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo "Expected:"
|
|
|
|
echo "* You are currently in the pmd repository"
|
|
|
|
echo "* ../pmd.github.io is the pmd.github.io repository"
|
|
|
|
echo
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
RELEASE_VERSION=
|
|
|
|
DEVELOPMENT_VERSION=
|
|
|
|
CURRENT_BRANCH=
|
|
|
|
|
|
|
|
echo "-------------------------------------------"
|
|
|
|
echo "Releasing PMD"
|
|
|
|
echo "-------------------------------------------"
|
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
# see also https://gist.github.com/pdunnavant/4743895
|
2017-12-15 15:05:21 +01:00
|
|
|
CURRENT_VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec)
|
2017-02-25 20:07:37 +01:00
|
|
|
RELEASE_VERSION=${CURRENT_VERSION%-SNAPSHOT}
|
2017-05-20 22:21:55 +02:00
|
|
|
MAJOR=$(echo $RELEASE_VERSION | cut -d . -f 1)
|
|
|
|
MINOR=$(echo $RELEASE_VERSION | cut -d . -f 2)
|
|
|
|
PATCH=$(echo $RELEASE_VERSION | cut -d . -f 3)
|
2017-07-01 18:56:33 +02:00
|
|
|
if [ "$PATCH" == "0" ]; then
|
|
|
|
NEXT_MINOR=$(expr ${MINOR} + 1)
|
|
|
|
NEXT_PATCH="0"
|
|
|
|
else
|
|
|
|
# this is a bugfixing release
|
|
|
|
NEXT_MINOR="${MINOR}"
|
|
|
|
NEXT_PATCH=$(expr ${PATCH} + 1)
|
|
|
|
fi
|
|
|
|
DEVELOPMENT_VERSION="$MAJOR.$NEXT_MINOR.$NEXT_PATCH"
|
2017-02-25 20:07:37 +01:00
|
|
|
DEVELOPMENT_VERSION="${DEVELOPMENT_VERSION}-SNAPSHOT"
|
|
|
|
|
|
|
|
# http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch
|
|
|
|
CURRENT_BRANCH=$(git symbolic-ref -q HEAD)
|
|
|
|
CURRENT_BRANCH=${CURRENT_BRANCH##refs/heads/}
|
|
|
|
CURRENT_BRANCH=${CURRENT_BRANCH:-HEAD}
|
|
|
|
|
|
|
|
echo "RELEASE_VERSION: ${RELEASE_VERSION}"
|
|
|
|
echo "DEVELOPMENT_VERSION: ${DEVELOPMENT_VERSION}"
|
|
|
|
echo "CURRENT_BRANCH: ${CURRENT_BRANCH}"
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Is this correct?"
|
|
|
|
echo
|
|
|
|
echo "Press enter to continue..."
|
|
|
|
read
|
2015-09-18 11:25:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
export RELEASE_VERSION
|
|
|
|
export DEVELOPMENT_VERSION
|
|
|
|
export CURRENT_BRANCH
|
|
|
|
|
2017-08-15 14:08:48 +02:00
|
|
|
echo "* Update version/release info in **docs/pages/release_notes.md**."
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo " ## $(date -u +%d-%B-%Y) - ${RELEASE_VERSION}"
|
|
|
|
echo
|
|
|
|
echo "* Ensure all the new rules are listed in a the proper file:"
|
|
|
|
echo " pmd-core/src/main/resources/rulesets/releases/${RELEASE_VERSION}.xml file."
|
|
|
|
echo
|
|
|
|
echo "* Update **../pmd.github.io/index.html** to mention the new release"
|
|
|
|
echo
|
|
|
|
echo "Press enter to continue..."
|
|
|
|
read
|
|
|
|
echo "Committing current changes (pmd)"
|
|
|
|
git commit -a -m "Prepare pmd release ${RELEASE_VERSION}"
|
|
|
|
(
|
|
|
|
echo "Committing current changes (pmd.github.io)"
|
|
|
|
cd ../pmd.github.io
|
|
|
|
git commit -a -m "Prepare pmd release ${RELEASE_VERSION}"
|
2017-02-25 20:07:37 +01:00
|
|
|
git push
|
2015-09-18 11:25:30 +02:00
|
|
|
)
|
|
|
|
|
2017-05-05 11:17:25 +02:00
|
|
|
./mvnw -B release:clean release:prepare \
|
2015-09-18 11:25:30 +02:00
|
|
|
-Dtag=pmd_releases/${RELEASE_VERSION} \
|
|
|
|
-DreleaseVersion=${RELEASE_VERSION} \
|
2017-02-25 20:07:37 +01:00
|
|
|
-DdevelopmentVersion=${DEVELOPMENT_VERSION}
|
2015-09-18 11:25:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
echo
|
2017-02-25 20:07:37 +01:00
|
|
|
echo "Tag has been pushed.... now check travis build: <https://travis-ci.org/pmd/pmd>"
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "Submit news to SF on <https://sourceforge.net/p/pmd/news/> page. You can use"
|
|
|
|
echo "the following template:"
|
|
|
|
echo
|
|
|
|
cat <<EOF
|
|
|
|
PMD ${RELEASE_VERSION} released
|
|
|
|
|
|
|
|
* minor version with lots of bug fixes
|
2017-08-15 14:08:48 +02:00
|
|
|
* Release Notes: https://pmd.github.io/pmd-${RELEASE_VERSION}/pmd_release_notes.html
|
2015-09-18 11:25:30 +02:00
|
|
|
* Downloads: https://github.com/pmd/pmd/releases/tag/pmd_releases%2F${RELEASE_VERSION}
|
|
|
|
* Fixed Bugs: https://sourceforge.net/p/pmd/bugs/milestone/PMD-${RELEASE_VERSION}/
|
|
|
|
* Documentation: https://pmd.github.io/pmd-${RELEASE_VERSION}/
|
|
|
|
EOF
|
|
|
|
echo
|
|
|
|
echo "Press enter to continue..."
|
|
|
|
read
|
|
|
|
|
|
|
|
echo
|
2017-02-25 20:07:37 +01:00
|
|
|
echo "Check the milestone on sourceforge:"
|
2015-09-18 11:25:30 +02:00
|
|
|
echo "<https://sourceforge.net/p/pmd/bugs/milestones>"
|
|
|
|
echo
|
2017-02-25 20:07:37 +01:00
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "Prepare Next development version:"
|
2017-08-15 14:08:48 +02:00
|
|
|
echo "* Move version/release info from **docs/pages/release_notes.md** to **docs/pages/release_notes_old.md**."
|
|
|
|
echo "* Update version/release info in **docs/pages/release_notes.md**."
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
cat <<EOF
|
2017-08-15 14:08:48 +02:00
|
|
|
---
|
|
|
|
title: PMD Release Notes
|
|
|
|
permalink: pmd_release_notes.html
|
|
|
|
keywords: changelog, release notes
|
|
|
|
---
|
2015-09-18 11:25:30 +02:00
|
|
|
|
|
|
|
## ????? - ${DEVELOPMENT_VERSION}
|
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
The PMD team is pleased to announce PMD ${DEVELOPMENT_VERSION%-SNAPSHOT}.
|
|
|
|
|
|
|
|
This is a bug fixing release.
|
2015-09-18 11:25:30 +02:00
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
### Table Of Contents
|
2015-09-18 11:25:30 +02:00
|
|
|
|
2017-08-15 14:08:48 +02:00
|
|
|
* [New and noteworthy](#new-and-noteworthy)
|
|
|
|
* [Fixed Issues](#fixed-issues)
|
|
|
|
* [API Changes](#api-changes)
|
|
|
|
* [External Contributions](#external-contributions)
|
2015-09-18 11:25:30 +02:00
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
### New and noteworthy
|
2015-09-18 11:25:30 +02:00
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
### Fixed Issues
|
2015-09-18 11:25:30 +02:00
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
### API Changes
|
|
|
|
|
|
|
|
### External Contributions
|
2015-09-18 11:25:30 +02:00
|
|
|
|
|
|
|
EOF
|
|
|
|
echo
|
|
|
|
echo "Press enter to continue..."
|
|
|
|
read
|
|
|
|
git commit -a -m "Prepare next development version"
|
2017-02-25 20:07:37 +01:00
|
|
|
git push origin ${CURRENT_BRANCH}
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
2017-02-25 20:07:37 +01:00
|
|
|
echo "Verify the new release on github: <https://github.com/pmd/pmd/releases/tag/pmd_releases/${RELEASE_VERSION}>"
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo
|
2017-02-25 21:12:18 +01:00
|
|
|
echo "Send out an announcement mail to the mailing list:"
|
|
|
|
echo "To: PMD Developers List <pmd-devel@lists.sourceforge.net>"
|
2017-02-25 20:07:37 +01:00
|
|
|
echo "Subject: [ANNOUNCE] PMD ${RELEASE_VERSION} Released"
|
|
|
|
echo "Body: !!Copy Changelog!!"
|
|
|
|
echo
|
2015-09-18 11:25:30 +02:00
|
|
|
echo
|
|
|
|
echo "------------------------------------------"
|
|
|
|
echo "Done."
|
|
|
|
echo "------------------------------------------"
|
|
|
|
echo
|
|
|
|
|
|
|
|
|
2017-02-25 20:07:37 +01:00
|
|
|
|