[skip ci] update comments
This commit is contained in:
parent
35e849783b
commit
9eef8e9f04
1 changed files with 9 additions and 3 deletions
12
build.py
12
build.py
|
@ -49,7 +49,7 @@ def dev(project):
|
||||||
def patch(project):
|
def patch(project):
|
||||||
"""
|
"""
|
||||||
updates version to next patch level, creates a tag, creates new SNAPSHOT version,
|
updates version to next patch level, creates a tag, creates new SNAPSHOT version,
|
||||||
executes git commit and push
|
commits primary build file (build.gradle) and pushes to remote
|
||||||
"""
|
"""
|
||||||
increase_version_number(project, "PATCH")
|
increase_version_number(project, "PATCH")
|
||||||
release(project)
|
release(project)
|
||||||
|
@ -57,14 +57,20 @@ def patch(project):
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def minor(project):
|
def minor(project):
|
||||||
""" updates version to next minor level, creates new SNAPSHOT version, executes git commit and push """
|
"""
|
||||||
|
updates version to next minor level, creates a tag, creates new SNAPSHOT version,
|
||||||
|
commits primary build file (build.gradle) and pushes to remote
|
||||||
|
"""
|
||||||
increase_version_number(project, "MINOR")
|
increase_version_number(project, "MINOR")
|
||||||
release(project)
|
release(project)
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def major(project):
|
def major(project):
|
||||||
""" updates version to next major level, creates new SNAPSHOT version, executes git commit and push """
|
"""
|
||||||
|
updates version to next major level, creates a tag, creates new SNAPSHOT version,
|
||||||
|
commits primary build file (build.gradle) and pushes to remote
|
||||||
|
"""
|
||||||
increase_version_number(project, "MAJOR")
|
increase_version_number(project, "MAJOR")
|
||||||
release(project)
|
release(project)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue