Skip to content

Commit 8852ff6

Browse files
authored
Merge pull request #289 from metafacture/286-release
Switch to next dev version, add instructions on releasing
2 parents 6021dbf + ffa4a3d commit 8852ff6

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

MAINTAINING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Releasing
2+
3+
Create a release and packages on GitHub:
4+
5+
- Change the `version` in `build.gradle`: remove `-SNAPSHOT`
6+
- Commit and tag that state (e.g. `git tag 0.4.0`), push the tag (e.g. `git push origin 0.4.0`)
7+
- Push that state to the `publish` branch to create GitHub packages: `git push origin master:publish`
8+
- Create a local runner distribution: `./gradlew distZip`
9+
- Create a release on GitHub: https://github.com/metafacture/metafacture-fix/releases, choose the new tag
10+
- Attach the runner zip from `metafacture-fix/metafix-runner/build/distributions`
11+
- Update the `version` in `build.gradle`: increase number, add `-SNAPSHOT`

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ subprojects {
5353
}
5454

5555
group = 'org.metafacture'
56-
version = '0.4.0-SNAPSHOT'
56+
version = '0.5.0-SNAPSHOT'
5757

5858
apply plugin: 'checkstyle'
5959
apply plugin: 'eclipse'

0 commit comments

Comments
 (0)