Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/finch-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -33,7 +33,7 @@ jobs:
test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/finch-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.24.0"
".": "1.25.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 46
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-a9dc15ba77c4c6e40c8f2429b1d614e7fe6888910579b54002fb90d418682d09.yml
openapi_spec_hash: be98b11d320aa0a1f3443650ce1b5b90
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-05a1c7485ea6dd75ad2fb1a0628570d88a3e7c4f1e1ecad433711c78deae50e6.yml
openapi_spec_hash: 6d6014d50e18c98219b496bb2a5dab1d
config_hash: 53778a0b839c4f6ad34fbba051f5e8a6
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 1.25.0 (2025-04-23)

Full Changelog: [v1.24.0...v1.25.0](https://github.com/Finch-API/finch-api-python/compare/v1.24.0...v1.25.0)

### Features

* **api:** api update ([176d774](https://github.com/Finch-API/finch-api-python/commit/176d774f1ae10f0b37dd430c7f51cff4dd664db0))


### Bug Fixes

* **pydantic v1:** more robust ModelField.annotation check ([579eedd](https://github.com/Finch-API/finch-api-python/commit/579eeddd1fcbbe147add3aa929ee4767e2b43e83))


### Chores

* broadly detect json family of content-type headers ([2864fa8](https://github.com/Finch-API/finch-api-python/commit/2864fa89555340d8e654cd17bdc3ee089eaee3a3))
* **ci:** only use depot for staging repos ([e8a6836](https://github.com/Finch-API/finch-api-python/commit/e8a6836f06bd970a5ac10189753aa1778feea6ef))
* **ci:** run on more branches and use depot runners ([5203afe](https://github.com/Finch-API/finch-api-python/commit/5203afee32ed62d01217ee6bddc41770fb1deccd))
* **internal:** fix list file params ([42ed0b1](https://github.com/Finch-API/finch-api-python/commit/42ed0b1e0e0e5791b90f5ca9c09fd3614bf86067))
* **internal:** minor formatting changes ([f517369](https://github.com/Finch-API/finch-api-python/commit/f5173692369bdbf1223d2b89be54cc43fe95e50a))
* **internal:** refactor retries to not use recursion ([64f0107](https://github.com/Finch-API/finch-api-python/commit/64f01072073a9ffc71e2fe274179df4f372953f0))

## 1.24.0 (2025-04-22)

Full Changelog: [v1.23.1...v1.24.0](https://github.com/Finch-API/finch-api-python/compare/v1.23.1...v1.24.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "finch-api"
version = "1.24.0"
version = "1.25.0"
description = "The official Python library for the Finch API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
Loading