Skip to content

Commit

Permalink
Merge branch 'release/v0.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbugli committed Feb 26, 2013
2 parents f6364ee + 10046c5 commit cb8816e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
def test():
local('python setup.py sdist')

def release():
version = tyron.__version__
def publish(release):
test()
local('git flow release finish %s' % version)
local('git checkout %s' % version)
local('git flow feature finish %s' % release)
local('git flow release start v%s' % tyron.__version__)
local('rm -rf dist/')
local('setup.py sdist upload')
local('git push origin :release/%s' % version)
local('git branch -d release/%s' % version)
local('git push origin :release/%s' % release)
local('git branch -d release/%s' % release)
2 changes: 1 addition & 1 deletion tyron/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.2'
__version__ = '0.0.3'

0 comments on commit cb8816e

Please sign in to comment.