From b2f35a9ef3d79a8e6f0c88df828265c113870b30 Mon Sep 17 00:00:00 2001 From: dfana Date: Mon, 21 Nov 2022 19:31:20 -0400 Subject: [PATCH 1/3] fix: setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bd01696..5c4a4cf 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ version=__version__, author="Pinterest, Inc.", author_email="sdk@pinterest.com", - url="https://github.com/pinternal/pinterest-python-sdk", + url="https://github.com/pinterest/pinterest-python-sdk", install_requires=REQUIRES, include_package_data=True, packages=find_namespace_packages( From d7c127e55c4ffd9930ca235f954363838942d14b Mon Sep 17 00:00:00 2001 From: dfana Date: Mon, 21 Nov 2022 19:34:24 -0400 Subject: [PATCH 2/3] fix: 404 in config.json and env.example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d539d2..14ba361 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ For use the client you need set basic variables for that you have two option set ### Setting up environment variables -To configure the client using environment variables, you must create a **.env** file using [.env.example](./pinterest/.env.example) +To configure the client using environment variables, you must create a **.env** file using [.env.example](.env.example) as a template. For basic configuration and usage you need to set the following environment variables in the **.env** file: ``` @@ -81,7 +81,7 @@ Once you have established the environment variables, the client will be instanti ### Setting up config.json -To configure the client using config.json, you must create a **config.json** file using [config.json.example](./pinterest/config.json.example) +To configure the client using config.json, you must create a **config.json** file using [config.json.example](config.json.example) as a template. For basic configuration and usage you need to set the following key in the **config.json** file: ```json From 304de9c0df31152b78ef93f1669ccc67b092e57d Mon Sep 17 00:00:00 2001 From: dfana Date: Mon, 21 Nov 2022 19:58:40 -0400 Subject: [PATCH 3/3] Release version 0.1.3 --- pinterest/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinterest/version.py b/pinterest/version.py index 84d29f0..84248d7 100644 --- a/pinterest/version.py +++ b/pinterest/version.py @@ -1,4 +1,4 @@ """ Pinterest SDK Packages Version """ -__version__ = '0.1.2' +__version__ = '0.1.3'