From 803ebd3ccf46ee0d6d2d75a804cfc67c1a298498 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 14:44:49 -0500 Subject: [PATCH 1/2] docs: replace
tags with newlines (#227) --- src/finch/types/introspection.py | 8 ++-- .../types/shared/operation_support_matrix.py | 40 +++++++++++-------- 2 files changed, 29 insertions(+), 19 deletions(-) diff --git a/src/finch/types/introspection.py b/src/finch/types/introspection.py index c4e6178d..41ad1f6c 100644 --- a/src/finch/types/introspection.py +++ b/src/finch/types/introspection.py @@ -22,9 +22,11 @@ class Introspection(BaseModel): """The Finch uuid of the company associated with the `access_token`.""" connection_type: Literal["provider", "finch"] - """ - The type of the connection associated with the token.
`provider` - - connection to an external provider
`finch` - finch-generated data. + """The type of the connection associated with the token. + + `provider` - connection to an external provider + + `finch` - finch-generated data. """ manual: bool diff --git a/src/finch/types/shared/operation_support_matrix.py b/src/finch/types/shared/operation_support_matrix.py index c8b8ec58..a054391f 100644 --- a/src/finch/types/shared/operation_support_matrix.py +++ b/src/finch/types/shared/operation_support_matrix.py @@ -10,45 +10,53 @@ class OperationSupportMatrix(BaseModel): create: Optional[OperationSupport] = None - """ - - `supported`: This operation is supported by both the provider and Finch
+ """- `supported`: This operation is supported by both the provider and Finch + - `not_supported_by_finch`: This operation is not supported by Finch but - supported by the provider
+ supported by the provider + - `not_supported_by_provider`: This operation is not supported by the provider, - so Finch cannot support
+ so Finch cannot support + - `client_access_only`: This behavior is supported by the provider, but only available to the client and not to Finch """ delete: Optional[OperationSupport] = None - """ - - `supported`: This operation is supported by both the provider and Finch
+ """- `supported`: This operation is supported by both the provider and Finch + - `not_supported_by_finch`: This operation is not supported by Finch but - supported by the provider
+ supported by the provider + - `not_supported_by_provider`: This operation is not supported by the provider, - so Finch cannot support
+ so Finch cannot support + - `client_access_only`: This behavior is supported by the provider, but only available to the client and not to Finch """ read: Optional[OperationSupport] = None - """ - - `supported`: This operation is supported by both the provider and Finch
+ """- `supported`: This operation is supported by both the provider and Finch + - `not_supported_by_finch`: This operation is not supported by Finch but - supported by the provider
+ supported by the provider + - `not_supported_by_provider`: This operation is not supported by the provider, - so Finch cannot support
+ so Finch cannot support + - `client_access_only`: This behavior is supported by the provider, but only available to the client and not to Finch """ update: Optional[OperationSupport] = None - """ - - `supported`: This operation is supported by both the provider and Finch
+ """- `supported`: This operation is supported by both the provider and Finch + - `not_supported_by_finch`: This operation is not supported by Finch but - supported by the provider
+ supported by the provider + - `not_supported_by_provider`: This operation is not supported by the provider, - so Finch cannot support
+ so Finch cannot support + - `client_access_only`: This behavior is supported by the provider, but only available to the client and not to Finch """ From bd54f26cb7acf4936032912c1ad4edfbbdd0cb72 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Mon, 18 Dec 2023 14:45:08 -0500 Subject: [PATCH 2/2] release: 0.9.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/finch/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6d78745c..05988747 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.0" + ".": "0.9.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e5825e3a..1cc83392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.9.1 (2023-12-18) + +Full Changelog: [v0.9.0...v0.9.1](https://github.com/Finch-API/finch-api-python/compare/v0.9.0...v0.9.1) + +### Documentation + +* replace <br> tags with newlines ([#227](https://github.com/Finch-API/finch-api-python/issues/227)) ([803ebd3](https://github.com/Finch-API/finch-api-python/commit/803ebd3ccf46ee0d6d2d75a804cfc67c1a298498)) + ## 0.9.0 (2023-12-17) Full Changelog: [v0.8.2...v0.9.0](https://github.com/Finch-API/finch-api-python/compare/v0.8.2...v0.9.0) diff --git a/pyproject.toml b/pyproject.toml index b477e34b..b78f8778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "0.9.0" +version = "0.9.1" description = "The official Python library for the Finch API" readme = "README.md" license = "Apache-2.0" diff --git a/src/finch/_version.py b/src/finch/_version.py index cfd63a12..a3af3618 100644 --- a/src/finch/_version.py +++ b/src/finch/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. __title__ = "finch" -__version__ = "0.9.0" # x-release-please-version +__version__ = "0.9.1" # x-release-please-version