# Releasing a new version

# make sure files match up
  check-manifest
  
# versioning
# edit version in setup.py */*/__init__.py
  git commit -m 'update version' setup.py */__init__.py
  git push

# update CHANGELOG.txt  `git shortlog`
  git commit -m 'update recent changes' CHANGELOG.txt
  git push

# create release tag on github
  git tag v1.0.1
  git push origin v1.0.1

# upload source to pypi
  rm -rf dist/*
  python setup.py sdist
  twine upload dist/*

# test the install by removing local developer version
# installing, then uninstalling, then restoring developer version
  conda develop -u .
  pip install pypolar
  pip uninstall pypolar
  conda develop .
  