Skip to content

Commit 4d01495

Browse files
authored
Merge pull request #5 from pinterest/release/0.1.2-wip
Release 0.1.2-wip
2 parents 2d5192f + 7bd7798 commit 4d01495

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env/
1212
build/
1313
develop-eggs/
1414
dist/
15+
dist*/
1516
downloads/
1617
eggs/
1718
.eggs/
@@ -63,4 +64,4 @@ docs/_build/
6364
target/
6465

6566
#Ipython Notebook
66-
.ipynb_checkpoints
67+
.ipynb_checkpoints

.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.gitignore
22
.gitlab-ci.yml
3+
.openapi-generator-ignore
34
.travis.yml
45
README.md
56
docs/Account.md

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## BETA NOTICE: This is BETA software and may have bugs and can be removed without previous notice. It is intended for qualified beta testers only and must not be used in production systems.
1+
## WIP NOTICE: This is WIP software and may have bugs and can be removed without previous notice. It is intended for qualified beta testers only and must not be used in production systems.
22

33
# Pinterest Generated Client
44
Pinterest's REST API
55

66
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
77

88
- API version: 5.5.0
9-
- Package version: 0.1.0-wip
9+
- Package version: 0.1.2-wip
1010
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1111
For more information, please visit [https://developers.pinterest.com/](https://developers.pinterest.com/)
1212

pinterest/generated/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "0.1.0-wip"
14+
__version__ = "0.1.2-wip"
1515

1616
# import ApiClient
1717
from pinterest.generated.client.api_client import ApiClient

pinterest/generated/client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
8282
self.default_headers[header_name] = header_value
8383
self.cookie = cookie
8484
# Set default User-Agent.
85-
self.user_agent = 'pins-generated-client/python/0.1.0-wip'
85+
self.user_agent = 'pins-generated-client/python/0.1.2-wip'
8686

8787
def __enter__(self):
8888
return self

pinterest/generated/client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def to_debug_report(self):
419419
"OS: {env}\n"\
420420
"Python Version: {pyversion}\n"\
421421
"Version of the API: 5.5.0\n"\
422-
"SDK Package Version: 0.1.0-wip".\
422+
"SDK Package Version: 0.1.2-wip".\
423423
format(env=sys.platform, pyversion=sys.version)
424424

425425
def get_host_settings(self):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "Pinterest Generated Client"
15-
VERSION = "0.1.0-wip"
15+
VERSION = "0.1.2-wip"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)