diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 79df23ff..3c82815b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.22.2" + ".": "0.22.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 079abcc6..6031422f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.22.3 (2024-07-24) + +Full Changelog: [v0.22.2...v0.22.3](https://github.com/Finch-API/finch-api-python/compare/v0.22.2...v0.22.3) + +### Chores + +* fix error message import example ([#450](https://github.com/Finch-API/finch-api-python/issues/450)) ([776dba7](https://github.com/Finch-API/finch-api-python/commit/776dba76aec42879f05f1e7e335ecd59a4648a2d)) + ## 0.22.2 (2024-07-23) Full Changelog: [v0.22.1...v0.22.2](https://github.com/Finch-API/finch-api-python/compare/v0.22.1...v0.22.2) diff --git a/pyproject.toml b/pyproject.toml index 79fb9e91..cc1351eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "0.22.2" +version = "0.22.3" description = "The official Python library for the Finch API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/finch/_base_client.py b/src/finch/_base_client.py index 4d943406..b72bb8dd 100644 --- a/src/finch/_base_client.py +++ b/src/finch/_base_client.py @@ -364,7 +364,7 @@ def __init__( if max_retries is None: # pyright: ignore[reportUnnecessaryComparison] raise TypeError( - "max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `finch-api.DEFAULT_MAX_RETRIES`" + "max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `finch.DEFAULT_MAX_RETRIES`" ) def _enforce_trailing_slash(self, url: URL) -> URL: diff --git a/src/finch/_version.py b/src/finch/_version.py index 47f3019e..2227af65 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__ = "0.22.2" # x-release-please-version +__version__ = "0.22.3" # x-release-please-version