Skip to content

Commit 9dff0df

Browse files
release: 1.42.3 (#687)
* codegen metadata * codegen metadata * chore(internal): add `--fix` argument to lint script * codegen metadata * release: 1.42.3 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent d29437e commit 9dff0df

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.42.2"
2+
".": "1.42.3"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-f81c5824a9002c980fc0d66c4d52e6cbd8baf7678f5e0f2215909357cff6f82c.yml
3-
openapi_spec_hash: 7714062cac3bb5597b8571172775bc92
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-d5c3e3934333478f55af69889eafaea9b0eeae82a1597c5dec34426e9d55efd5.yml
3+
openapi_spec_hash: 9ec42fee7f3124b3050846f74404b398
44
config_hash: 0892e2e0eeb0343a022afa62e9080dd1

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.42.3 (2025-12-19)
4+
5+
Full Changelog: [v1.42.2...v1.42.3](https://github.com/Finch-API/finch-api-python/compare/v1.42.2...v1.42.3)
6+
7+
### Chores
8+
9+
* **internal:** add `--fix` argument to lint script ([3ae3b64](https://github.com/Finch-API/finch-api-python/commit/3ae3b64ba8111d8fef71acb6ab1cf61da2b542b5))
10+
311
## 1.42.2 (2025-12-17)
412

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "finch-api"
3-
version = "1.42.2"
3+
version = "1.42.3"
44
description = "The official Python library for the Finch API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

scripts/lint

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
echo "==> Running lints"
8-
rye run lint
7+
if [ "$1" = "--fix" ]; then
8+
echo "==> Running lints with --fix"
9+
rye run fix:ruff
10+
else
11+
echo "==> Running lints"
12+
rye run lint
13+
fi
914

1015
echo "==> Making sure it imports"
1116
rye run python -c 'import finch'

src/finch/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "finch"
4-
__version__ = "1.42.2" # x-release-please-version
4+
__version__ = "1.42.3" # x-release-please-version

0 commit comments

Comments
 (0)