diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f94eeca2..734ad79c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.13.0" + ".": "1.13.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 926df9fa..acbdc2cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.13.1 (2025-01-08) + +Full Changelog: [v1.13.0...v1.13.1](https://github.com/Finch-API/finch-api-python/compare/v1.13.0...v1.13.1) + +### Chores + +* **internal:** codegen related update ([#567](https://github.com/Finch-API/finch-api-python/issues/567)) ([fde0502](https://github.com/Finch-API/finch-api-python/commit/fde0502ffd4a3a9bba553ae38e7763bb650c6e92)) + + +### Documentation + +* fix typos ([#564](https://github.com/Finch-API/finch-api-python/issues/564)) ([4f7491f](https://github.com/Finch-API/finch-api-python/commit/4f7491f59a349785250508c284d85a7d0aadd320)) +* more typo fixes ([#566](https://github.com/Finch-API/finch-api-python/issues/566)) ([1ebaf62](https://github.com/Finch-API/finch-api-python/commit/1ebaf6258ea3e9ca7a6401f9554aec548a4a0653)) + ## 1.13.0 (2025-01-07) Full Changelog: [v1.12.1...v1.13.0](https://github.com/Finch-API/finch-api-python/compare/v1.12.1...v1.13.0) diff --git a/README.md b/README.md index a482eca8..40af1bef 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ except finch.APIStatusError as e: print(e.response) ``` -Error codes are as followed: +Error codes are as follows: | Status Code | Error Type | | ----------- | -------------------------- | @@ -313,7 +313,7 @@ directory = response.parse() # get the object that `hris.directory.list()` woul print(directory.id) ``` -These methods return an [`LegacyAPIResponse`](https://github.com/Finch-API/finch-api-python/tree/main/src/finch/_legacy_response.py) object. This is a legacy class as we're changing it slightly in the next major version. +These methods return a [`LegacyAPIResponse`](https://github.com/Finch-API/finch-api-python/tree/main/src/finch/_legacy_response.py) object. This is a legacy class as we're changing it slightly in the next major version. For the sync client this will mostly be the same with the exception of `content` & `text` will be methods instead of properties. In the @@ -349,8 +349,7 @@ If you need to access undocumented endpoints, params, or response properties, th #### Undocumented endpoints To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other -http verbs. Options on the client will be respected (such as retries) will be respected when making this -request. +http verbs. Options on the client will be respected (such as retries) when making this request. ```py import httpx @@ -422,7 +421,7 @@ with Finch() as client: This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions: 1. Changes that only affect static types, without breaking runtime behavior. -2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_. +2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_ 3. Changes that we do not expect to impact the vast majority of users in practice. We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. diff --git a/pyproject.toml b/pyproject.toml index afbe04cd..df9d3b28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "1.13.0" +version = "1.13.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 03ba9dd4..7eba760c 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.13.0" # x-release-please-version +__version__ = "1.13.1" # x-release-please-version