From 3557016553895a833cc2daa52d1bb562f2ccacf2 Mon Sep 17 00:00:00 2001 From: "ngrok-bors-ng[bot]" <52465704+ngrok-bors-ng[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 19:32:51 +0000 Subject: [PATCH] cut new release for ngrok-api-python --- README.md | 14 ++++++++------ setup.py | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index da96ab6..af638f8 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ +# Unstable + +This library is currently unstable. We know of rough edges +and are working to bring it to parity with our other API client +libraries. Please feel free to try it out and let us know if you find +it useful! + # ngrok API client library for Python This library wraps the [ngrok HTTP API](https://ngrok.com/docs/api) to make it easier to consume in Python. -## Beta Disclaimer - -The Python ngrok API client library is in beta. While most of this -library should work, portions may be entirely broken or incomplete. - ## Installation This library is published on [PyPi](https://pypi.org/project/ngrok-api/) @@ -34,4 +36,4 @@ Please consult the [documentation](https://python-api.docs.ngrok.com) for additi # create an ip policy that allows traffic from some subnets policy = client.ip_policies.create() for cidr in ["24.0.0.0/8", "12.0.0.0/8"]: - client.ip_policy_rules.create(cidr=cidr, ip_policy_id=policy.id, action="allow") \ No newline at end of file + client.ip_policy_rules.create(cidr=cidr, ip_policy_id=policy.id, action="allow") diff --git a/setup.py b/setup.py index 36037e7..6491d14 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def read_file(filename): setup( name="ngrok-api", - version="0.7.0", + version="0.8.0", description="ngrok HTTP API client library", long_description=read_file("README.md"), long_description_content_type="text/markdown",