[skip ci] update comments

This commit is contained in:
ansgarz 2023-11-25 12:07:50 +01:00
parent 35e849783b
commit 9eef8e9f04

View file

@ -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)