Change out Go Daddy root ca for their ca bundle. Also add checks for version number matching when doing releases.
diff --git a/Makefile b/Makefile
index 5f3e5c2..94ae182 100644
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,13 @@
 	cd python3 && python3.2 httplib2test.py
 
 VERSION = $(shell python setup.py --version)
+INLINE_VERSION = $(shell cd python2; python -c "import httplib2;print httplib2.__version__")
+INLINE_VERSION_3 = $(shell cd python3; python3.2 -c "import httplib2;print(httplib2.__version__)")
 DST = dist/httplib2-$(VERSION)
 
 release:
+	[ "$(VERSION)" == "$(INLINE_VERSION)" ] # Check for version number mismatch
+	[ "$(VERSION)" == "$(INLINE_VERSION_3)" ] # Check for version number mismatch
 	-find . -name "*.pyc" | xargs rm 
 	-find . -name "*.orig" | xargs rm 
 	-rm -rf python2/.cache