Skip to content

Commit

Permalink
Tagging the 0.4.0beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Greenfeld committed Mar 12, 2015
1 parent b0acbe2 commit 8ee41b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion djstripe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__summary__ = "Django + Stripe Made Easy"
__uri__ = "https://github.com/pydanny/dj-stripe/"

__version__ = "0.3.6"
__version__ = "0.4.0beta"

__author__ = "Daniel Greenfeld"
__email__ = "[email protected]"
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
os.system("git push --tags")
sys.exit()

if sys.argv[-1] == 'tag':
print("Tagging the version on github:")
os.system("git tag -a %s -m 'version %s'" % (version, version))
os.system("git push --tags")
sys.exit()

readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')

Expand Down

0 comments on commit 8ee41b8

Please sign in to comment.