Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
arnehilmann committed Apr 4, 2016
1 parent 6413df5 commit 8afe0e6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pybuilder.core import use_plugin, init, Author
from pybuilder.core import use_plugin, init, Author, task

use_plugin("python.core")
use_plugin("python.unittest")
Expand All @@ -10,7 +10,7 @@
use_plugin('filter_resources')

name = "sunstone-rest-client"
version = '0.0.9'
version = '0.0.10'

default_task = ["clean", "analyze", "publish"]

Expand All @@ -25,6 +25,13 @@
license = 'Apache License v2.0'


@task
def gittag(project, logger):
logger.info("The following commands create a new release, triggering all the fun stuff:")
logger.info("git tag -a v{0} -m v{0}".format(project.version))
logger.info("git push --tags")


@init
def set_properties(project):
project.build_depends_on('mock')
Expand Down

0 comments on commit 8afe0e6

Please sign in to comment.