diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e72f1131..a780111d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.14.0" + ".": "1.14.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c003d286..69218cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.14.1 (2025-02-10) + +Full Changelog: [v1.14.0...v1.14.1](https://github.com/Finch-API/finch-api-python/compare/v1.14.0...v1.14.1) + +### Documentation + +* **readme:** update example snippets ([#592](https://github.com/Finch-API/finch-api-python/issues/592)) ([3e73768](https://github.com/Finch-API/finch-api-python/commit/3e73768025b6204a3d85ea7ae08e74a82235f050)) + ## 1.14.0 (2025-02-06) Full Changelog: [v1.13.3...v1.14.0](https://github.com/Finch-API/finch-api-python/compare/v1.13.3...v1.14.0) diff --git a/README.md b/README.md index 40af1bef..9b82e4ec 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ client = Finch( ) page = client.hris.directory.list() -print(page.page) +print(page.individuals) ``` ## Async usage @@ -49,7 +49,7 @@ client = AsyncFinch( async def main() -> None: page = await client.hris.directory.list() - print(page.page) + print(page.individuals) asyncio.run(main()) @@ -141,7 +141,7 @@ from finch import Finch client = Finch() page = client.hris.directory.list() -print(page.page) +print(page.individuals) ``` ## Webhook Verification diff --git a/pyproject.toml b/pyproject.toml index 026328d7..94f9e855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "1.14.0" +version = "1.14.1" description = "The official Python library for the Finch API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/finch/_version.py b/src/finch/_version.py index 1021bdca..4261c266 100644 --- a/src/finch/_version.py +++ b/src/finch/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "finch" -__version__ = "1.14.0" # x-release-please-version +__version__ = "1.14.1" # x-release-please-version