diff --git a/clients/python/moonstream/client.py b/clients/python/moonstream/client.py index 9699257b..4bf41bcd 100644 --- a/clients/python/moonstream/client.py +++ b/clients/python/moonstream/client.py @@ -13,7 +13,7 @@ logger.setLevel(log_level) # Keep this synchronized with the version in setup.py -CLIENT_VERSION = "0.0.1" +CLIENT_VERSION = "0.0.2" ENDPOINT_PING = "/ping" ENDPOINT_VERSION = "/version" diff --git a/clients/python/setup.py b/clients/python/setup.py index 70600b22..b12b4518 100644 --- a/clients/python/setup.py +++ b/clients/python/setup.py @@ -6,7 +6,7 @@ with open("README.md") as ifp: setup( name="moonstream", - version="0.0.1", + version="0.0.2", packages=find_packages(), package_data={"moonstream": ["py.typed"]}, install_requires=["requests", "dataclasses; python_version=='3.6'"],