Skip to content

Commit

Permalink
Merge pull request #289 from metafacture/286-release
Browse files Browse the repository at this point in the history
Switch to next dev version, add instructions on releasing
  • Loading branch information
fsteeg authored Mar 7, 2023
2 parents 6021dbf + ffa4a3d commit 8852ff6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions MAINTAINING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Releasing

Create a release and packages on GitHub:

- Change the `version` in `build.gradle`: remove `-SNAPSHOT`
- Commit and tag that state (e.g. `git tag 0.4.0`), push the tag (e.g. `git push origin 0.4.0`)
- Push that state to the `publish` branch to create GitHub packages: `git push origin master:publish`
- Create a local runner distribution: `./gradlew distZip`
- Create a release on GitHub: https://github.com/metafacture/metafacture-fix/releases, choose the new tag
- Attach the runner zip from `metafacture-fix/metafix-runner/build/distributions`
- Update the `version` in `build.gradle`: increase number, add `-SNAPSHOT`
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ subprojects {
}

group = 'org.metafacture'
version = '0.4.0-SNAPSHOT'
version = '0.5.0-SNAPSHOT'

apply plugin: 'checkstyle'
apply plugin: 'eclipse'
Expand Down

0 comments on commit 8852ff6

Please sign in to comment.