[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):
|
||||
"""
|
||||
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")
|
||||
release(project)
|
||||
|
@ -57,14 +57,20 @@ def patch(project):
|
|||
|
||||
@task
|
||||
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")
|
||||
release(project)
|
||||
|
||||
|
||||
@task
|
||||
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")
|
||||
release(project)
|
||||
|
||||
|
|
Loading…
Reference in a new issue