diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8cfc016b..b69f4371 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ee61a002..c7e67f4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.9.3 (2023-12-19) + +Full Changelog: [v0.9.2...v0.9.3](https://github.com/Finch-API/finch-api-python/compare/v0.9.2...v0.9.3) + +### Chores + +* **internal:** fix typos ([#233](https://github.com/Finch-API/finch-api-python/issues/233)) ([04e2063](https://github.com/Finch-API/finch-api-python/commit/04e2063da581e491e434c5a379b8ecee282c7691)) +* **package:** bump minimum typing-extensions to 4.7 ([#235](https://github.com/Finch-API/finch-api-python/issues/235)) ([0851286](https://github.com/Finch-API/finch-api-python/commit/0851286146418a6235e2d3a26cd5d8f700a67234)) + ## 0.9.2 (2023-12-19) Full Changelog: [v0.9.1...v0.9.2](https://github.com/Finch-API/finch-api-python/compare/v0.9.1...v0.9.2) diff --git a/pyproject.toml b/pyproject.toml index ec5b3c3e..b49a3256 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "0.9.2" +version = "0.9.3" description = "The official Python library for the Finch API" readme = "README.md" license = "Apache-2.0" @@ -10,7 +10,7 @@ authors = [ dependencies = [ "httpx>=0.23.0, <1", "pydantic>=1.9.0, <3", - "typing-extensions>=4.5, <5", + "typing-extensions>=4.7, <5", "anyio>=3.5.0, <5", "distro>=1.7.0, <2", "sniffio", diff --git a/src/finch/_base_client.py b/src/finch/_base_client.py index 92189617..481171a4 100644 --- a/src/finch/_base_client.py +++ b/src/finch/_base_client.py @@ -107,7 +107,7 @@ class PageInfo: - """Stores the necesary information to build the request to retrieve the next page. + """Stores the necessary information to build the request to retrieve the next page. Either `url` or `params` must be set. """ diff --git a/src/finch/_version.py b/src/finch/_version.py index 8b4c0b8b..68fc6d2a 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.2" # x-release-please-version +__version__ = "0.9.3" # x-release-please-version