diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ab67d0fc..10f30916 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.5" + ".": "0.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c19278f6..03739a00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Changelog +## 0.2.0 (2023-10-17) + +Full Changelog: [v0.1.5...v0.2.0](https://github.com/Finch-API/finch-api-python/compare/v0.1.5...v0.2.0) + +### Features + +* **client:** add logging setup ([#127](https://github.com/Finch-API/finch-api-python/issues/127)) ([71aab4b](https://github.com/Finch-API/finch-api-python/commit/71aab4bab20f465005c6300bdedf46862d7fdb82)) +* **client:** add support for passing in a httpx client ([#123](https://github.com/Finch-API/finch-api-python/issues/123)) ([623f5bc](https://github.com/Finch-API/finch-api-python/commit/623f5bc8c460e8e880ebc932c8a0f4a4ba780396)) +* make webhook headers case insensitive ([#130](https://github.com/Finch-API/finch-api-python/issues/130)) ([3af34f9](https://github.com/Finch-API/finch-api-python/commit/3af34f9a71dde0fa60ac7c2aa75e1273e8431015)) + + +### Bug Fixes + +* **client:** accept io.IOBase instances in file params ([#134](https://github.com/Finch-API/finch-api-python/issues/134)) ([1297832](https://github.com/Finch-API/finch-api-python/commit/1297832b447ed973ab39b93a329550151747a899)) +* **client:** correctly handle arguments with env vars ([#128](https://github.com/Finch-API/finch-api-python/issues/128)) ([e502b18](https://github.com/Finch-API/finch-api-python/commit/e502b18337da39095aee811ea3d69576085602a4)) +* correct benfits to benefits ([#125](https://github.com/Finch-API/finch-api-python/issues/125)) ([9e2c02a](https://github.com/Finch-API/finch-api-python/commit/9e2c02ad1f53d94ed523e340751b39f10ebbe483)) + + +### Chores + +* **internal:** cleanup some redundant code ([#133](https://github.com/Finch-API/finch-api-python/issues/133)) ([88e49bc](https://github.com/Finch-API/finch-api-python/commit/88e49bcc474195cde09d127d028e3a427b13e9a2)) +* **internal:** enable lint rule ([#132](https://github.com/Finch-API/finch-api-python/issues/132)) ([8e266e8](https://github.com/Finch-API/finch-api-python/commit/8e266e82511822cfefc7d877300382a05ca2f25e)) +* update comment ([#131](https://github.com/Finch-API/finch-api-python/issues/131)) ([20aa00a](https://github.com/Finch-API/finch-api-python/commit/20aa00ac06e4104b74c047cc75720b2aa77c2f4a)) + + +### Documentation + +* organisation -> organization (UK to US English) ([#135](https://github.com/Finch-API/finch-api-python/issues/135)) ([2e278bd](https://github.com/Finch-API/finch-api-python/commit/2e278bd482dc7407689142037df9fd3bfa15f05e)) + + +### Refactors + +* **test:** refactor authentication tests ([#126](https://github.com/Finch-API/finch-api-python/issues/126)) ([88b79b5](https://github.com/Finch-API/finch-api-python/commit/88b79b5a98bda98ae1b6562b385db6ca53105707)) + ## 0.1.5 (2023-10-09) Full Changelog: [v0.1.4...v0.1.5](https://github.com/Finch-API/finch-api-python/compare/v0.1.4...v0.1.5) diff --git a/pyproject.toml b/pyproject.toml index 78b2279d..6c29c640 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "finch-api" -version = "0.1.5" +version = "0.2.0" description = "Client library for the Finch API" readme = "README.md" authors = ["Finch "] diff --git a/src/finch/_version.py b/src/finch/_version.py index ff2c0a56..25f2f03c 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.1.5" # x-release-please-version +__version__ = "0.2.0" # x-release-please-version