libcoinche 0.2.0

A library to model the Coinche card game.
Documentation
set -e

cargo doc
FROM=$(git rev-parse --short HEAD)
git checkout gh-pages
rsync -a target/doc/ .
git add .
git commit -m "Update doc for ${FROM}"
git push
git checkout master