...
- Create a tag for 1.13 (for instance, with gitg)
- Create a branch from the release branch to merge the changes back to master
(1.13)*$ git checkout -b 1.13-back-to-master - Update version number in the gradle.properties file (remember to include -SNAPSHOT!)
- Execute $ ./gradlew clean distribute -x check -x test to update version strings
- Update version number in the Eclipse settings (@since tag) .settings/org.eclipse.jdt.ui.prefs
- Commit the changes and push
$ git commit -am "merging release branch back to master"
$ git push origin 1.13-back-to-master - Create a pull request on GitHub to the master branch
- Wait for the checks of the pull request to be successful
- Delete local and remote branch 1.9
git branch -d 1.9 git push origin --delete 1.9
- Push tag git push origin 1.9
- Update version numbers on http://kieker-monitoring.net/download/nightly/
- Update version number in https://build.se.informatik.uni-kiel.de/jenkins/job/kieker-nightly-benchmark/configure
- Run Eclipse function to scan record API and generate test classes
- The tool is available in gitlab@build.se.informatik.uni-kiel.de:kieker/utility.git
- import de.cau.cs.se.kieker.record.analyser
- Run tests
- On errors determine cause and create tickets
...