diff --git a/api/humbug/__init__.py b/api/humbug/__init__.py index 2e329258ec..8969539fb6 100644 --- a/api/humbug/__init__.py +++ b/api/humbug/__init__.py @@ -33,7 +33,7 @@ from distutils.version import LooseVersion from ConfigParser import SafeConfigParser -__version__ = "0.1.7" +__version__ = "0.1.8" # Check that we have a recent enough version # Older versions don't provide the 'json' attribute on responses. diff --git a/templates/zephyr/api.html b/templates/zephyr/api.html index 9ea0a99120..fbaf8d2399 100644 --- a/templates/zephyr/api.html +++ b/templates/zephyr/api.html @@ -13,8 +13,8 @@
We have a well-documented API that allows you to build custom integrations, in addition to our existing integrations. For ease-of-use, we've created a Python module that you can drop in to a project to start interacting with our API.
diff --git a/tools/build-api-tarball b/tools/build-api-tarball index acd6f3753f..b669b42b1a 100755 --- a/tools/build-api-tarball +++ b/tools/build-api-tarball @@ -2,7 +2,7 @@ cd api/ # Strip out non-send_message bindings. -perl -i.bak -ne 'print if !m/Client._register/ ||m/send_message/ ||m/get_messages/' humbug/__init__.py +perl -i.bak -ne 'print if !m/Client._register/ ||m/send_message/ ||m/get_messages/ ||m/_register.*register/ ||m/get_events/' humbug/__init__.py python setup.py sdist mv humbug/__init__.py.bak humbug/__init__.py echo API tarball written to api/dist