Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated release scripts across all versions
- Changelog generator auto-commits changelog.
- Release script uses staging git repository for build artifacts
- Removed old obsolete build scripts
  • Loading branch information
dashorst committed Apr 25, 2016
1 parent 631eaa9 commit f82fd1c
Show file tree
Hide file tree
Showing 8 changed files with 605 additions and 1,556 deletions.
22 changes: 11 additions & 11 deletions build-changelog.sh
Expand Up @@ -117,7 +117,7 @@ echo "done"

echo " - merging release notes into changelog: \c"

echo "This file contains all changes done in releases for Apache Wicket 7.x.
echo "This file contains all changes done in releases for Apache Wicket $major_version.x.
=======================================================================
$(cat /tmp/release-notes-$version.txt)
Expand All @@ -127,21 +127,21 @@ $(tail -n +4 CHANGELOG-$major_version.x)
" > /tmp/changelog-$version.txt
cp /tmp/changelog-$version.txt CHANGELOG-$major_version.x

echo "done"
echo "done
"
git diff

echo "
The CHANGELOG-$major_version.x file has been updated. Please check the contents
and commit the changes.
echo ""

To see the status:
git add CHANGELOG-$major_version.x
git commit -m "Added CHANGELOG for release $version"

git status
git diff
echo "
The CHANGELOG-$major_version.x file has been updated and committed.
To add and commit the CHANGELOG:
To revert the changes to the CHANGELOG:
git add CHANGELOG-$major_version.x
git commit -m \"Added CHANGELOG for release $version
git reset HEAD^ --hard
Have fun!
"
2 changes: 1 addition & 1 deletion build-versions.py
Expand Up @@ -43,7 +43,7 @@ def getModulesFromParent(parentPomFile):
addVersions(groupId, module)

addVersions(groupId, "wicket-parent")
addVersions("org.apache.wicket.experimental.wicket8", "wicket-experimental")
addVersions("org.apache.wicket.experimental.wicket7", "wicket-experimental")

getModulesFromParent("pom.xml")
getModulesFromParent("wicket-native-websocket/pom.xml")
Expand Down
283 changes: 0 additions & 283 deletions patch-dashorst.sh

This file was deleted.

0 comments on commit f82fd1c

Please sign in to comment.