Skip to content

Commit 6f04ccd

Browse files
chore: add github doc prefixes in README for apis, models
1 parent 9d7c8b2 commit 6f04ccd

File tree

6 files changed

+201
-203
lines changed

6 files changed

+201
-203
lines changed

README.md

Lines changed: 196 additions & 198 deletions
Large diffs are not rendered by default.

plane/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.1.2"
18+
__version__ = "0.1.3"
1919

2020
# import apis into sdk package
2121
from plane.api.assets_api import AssetsApi

plane/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/0.1.2/python'
81+
self.user_agent = 'OpenAPI-Generator/0.1.3/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

plane/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def to_debug_report(self):
412412
"OS: {env}\n"\
413413
"Python Version: {pyversion}\n"\
414414
"Version of the API: 0.0.1\n"\
415-
"SDK Package Version: 0.1.2".\
415+
"SDK Package Version: 0.1.3".\
416416
format(env=sys.platform, pyversion=sys.version)
417417

418418
def get_host_settings(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "plane"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "The Plane REST API"
55
authors = ["Plane <[email protected]>"]
66
license = "GNU AGPLv3"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "plane-sdk"
25-
VERSION = "0.1.2"
25+
VERSION = "0.1.3"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)