From 6bdf7a1f9965c27b142a2c708823298948115c8b Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 24 Jan 2016 12:50:45 -0800 Subject: [PATCH] Added auto-increment section. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ecd599c..c15e472 100644 --- a/README.md +++ b/README.md @@ -115,5 +115,15 @@ example.project=Example example.major=1 example.minor=0 example.patch=0 -... -``` \ No newline at end of file +# ... +``` + +## Auto-Increment + +Incrementing the version is best left to your favorite build system. + +For a solution using [Gradle](https://gradle.org/), please have a look at the `build.gradle` file in the `example` module directory. To run the example with patch version auto-incrementing, issue the following command: + +``` +gradle clean release run +```