From 7256871ee80819f47f7eb0234791243fabc84a37 Mon Sep 17 00:00:00 2001 From: Stephen Jayakar Date: Tue, 16 Mar 2021 15:58:21 -0700 Subject: [PATCH] 8.0.0b10 (#309) --- CHANGELOG.md | 3 +++ Makefile | 2 +- README.md | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 628d226e0..20cda3c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 8.0.0b10 +Type fixes, see full changelog [here](https://github.com/plaid/plaid-openapi/blob/master/CHANGELOG.md). + ## 8.0.0b9 This version represents a transition in how we maintain our external client libraries. We are now using an [API spec](https://github.com/plaid/plaid-openapi) written in `OpenAPI 3.0.0` and running our definition file through [OpenAPITool's `python` generator](https://github.com/OpenAPITools/openapi-generator). diff --git a/Makefile b/Makefile index bff94ad44..71da3e29e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ #!make CURRENT_DIR:=$(shell pwd) -OPENAPI_VERSION:=1.5.4-beta +OPENAPI_VERSION:=1.8.0-beta OPENAPI_FILE:=2020-09-14.yml PYTHON_PACKAGE_VERSION=$(shell cat setup.py | grep VERSION | head -1 | sed -e "s/^VERSION=//" -e "s/'//" -e "s/'//") OPENAPI_GENERATOR:=docker run --rm -v $(CURRENT_DIR):/local openapitools/openapi-generator-cli:v5.0.1 generate diff --git a/README.md b/README.md index bf999a989..9a753c533 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The official python client library for the [Plaid API][1]. ## Install ```console -$ pip install plaid-python +$ pip install --pre plaid-python==8.0.0b10 ``` ## Documentation diff --git a/setup.py b/setup.py index 2ac1e870a..733c29230 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION='8.0.0b9' +VERSION='8.0.0b10' url = 'https://github.com/plaid/plaid-python' REQUIRES = [