Skip to content

Commit

Permalink
v0.42 minor fix regarding release script tagging.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Mar 31, 2015
1 parent 62dcbb2 commit 27b85b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jira/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into the jira module
__version__ = '0.41'
__version__ = '0.42'
6 changes: 3 additions & 3 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ git diff
echo "Please don't run this as a user. This generates a new release for PyPI. Press ^C to exit or Enter to continue."
read

python setup.py register bdist_wheel build_sphinx upload_docs upload --sign

#git log --date=short --pretty=format:"%cd %s" > RELEASE
git add RELEASE
git tag -f -a $VERSION -m "Version $VERSION"
git tag -a $VERSION -m "Version $VERSION"
git tag -f -a RELEASE -m "Current RELEASE"

python setup.py register bdist_wheel build_sphinx upload_docs upload --sign

git push --force origin --tags

echo "done."

0 comments on commit 27b85b6

Please sign in to comment.