Skip to content

Commit

Permalink
prepare version 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msbt committed Apr 4, 2014
1 parent 1bebec4 commit 8b026f8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,3 @@ crate.egg-info
/.idea/
.tox/
*.DS_Store

/devtools/bin/
/devtools/dependencies/
/devtools/eggs/
/devtools/parts/
/devtools/develop-eggs/
/devtools/.installed.cfg
/devtools/crash-*.zip.py
/devtools/venv/
7 changes: 6 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
Changes for crate
=================

2014/04/21 0.8.0
2014/04/04 0.8.1
================

- client: fix error handling in ``client.server_infos()``

2014/03/21 0.8.0
================

- updated crate to 0.32.3
Expand Down
20 changes: 8 additions & 12 deletions create_tag.sh → devtools/create_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,24 @@ fi
echo "Fetching origin..."
git fetch origin > /dev/null

# check if current branch is master
# get current branch
BRANCH=`git branch | grep "^*" | cut -d " " -f 2`
if [ "$BRANCH" != "master" ]
then
echo "Current branch is $BRANCH. Must be master."
echo "Aborting."
exit -1
fi
echo "Current branch is $BRANCH."

# check if master == origin/master
MASTER_COMMIT=`git show --format="%H" master`
ORIGINMASTER_COMMIT=`git show --format="%H" origin/master`
LOCAL_COMMIT=`git show --format="%H" $BRANCH`
ORIGIN_COMMIT=`git show --format="%H" origin/$BRANCH`

if [ "$MASTER_COMMIT" != "$ORIGINMASTER_COMMIT" ]
if [ "$LOCAL_COMMIT" != "$ORIGIN_COMMIT" ]
then
echo "Local master is not up to date. "
echo "Local $BRANCH is not up to date. "
echo "Aborting."
exit -1
fi

# check if tag to create has already been created
VERSION=`./bin/py setup.py --version`
WORKING_DIR=`dirname $0`
VERSION=`$WORKING_DIR/../bin/py setup.py --version`
EXISTS=`git tag | grep $VERSION`

if [ "$VERSION" == "$EXISTS" ]
Expand Down
2 changes: 1 addition & 1 deletion src/crate/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# version string read from setup.py using a regex. Take care not to break the
# regex!
__version__ = "0.8.0"
__version__ = "0.8.1"

apilevel = "2.0"
threadsafety = 2
Expand Down

0 comments on commit 8b026f8

Please # to comment.