Skip to content

release: 0.3.1 #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +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/prelude-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -30,8 +31,9 @@ jobs:
run: ./scripts/lint

test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/prelude-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 @@
{
".": "0.3.0"
".": "0.3.1"
}
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 0.3.1 (2025-04-23)

Full Changelog: [v0.3.0...v0.3.1](https://github.com/prelude-so/python-sdk/compare/v0.3.0...v0.3.1)

### Bug Fixes

* **pydantic v1:** more robust ModelField.annotation check ([adc627b](https://github.com/prelude-so/python-sdk/commit/adc627b38a17ba32d1aa9beff2a55b20aee00588))


### Chores

* broadly detect json family of content-type headers ([f47f2a8](https://github.com/prelude-so/python-sdk/commit/f47f2a8bc4c86f1607c4da6286648f8f68309746))
* **ci:** add timeout thresholds for CI jobs ([86a95ec](https://github.com/prelude-so/python-sdk/commit/86a95ec72dee0ad1c2daef78f6abe57e37ba172b))
* **ci:** only use depot for staging repos ([a93504a](https://github.com/prelude-so/python-sdk/commit/a93504a8378b223e8dc1bd2aee69861faf6d6aa4))
* **ci:** run on more branches and use depot runners ([8e40b2f](https://github.com/prelude-so/python-sdk/commit/8e40b2f2078cea5af1c74748abf0445e877d08a0))
* **client:** minor internal fixes ([191826b](https://github.com/prelude-so/python-sdk/commit/191826b8f197fc684013eccb67785692964dc4a2))
* **internal:** base client updates ([658c667](https://github.com/prelude-so/python-sdk/commit/658c6672d8cef3a53b0fb15de1f34f12de554e09))
* **internal:** bump pyright version ([30e6817](https://github.com/prelude-so/python-sdk/commit/30e6817c4d2bbf13e3e8832e626b827d60e221b9))
* **internal:** fix list file params ([82ee669](https://github.com/prelude-so/python-sdk/commit/82ee669ad5fca2d5f6e2a3a35f05642ba763a488))
* **internal:** import reformatting ([5ef2486](https://github.com/prelude-so/python-sdk/commit/5ef24860752772fec8898d25cb2772ed9131209a))
* **internal:** refactor retries to not use recursion ([200a5da](https://github.com/prelude-so/python-sdk/commit/200a5da2c4b3f5ad06fdf94ecd9ee86c77f4965a))
* **internal:** update models test ([f77a730](https://github.com/prelude-so/python-sdk/commit/f77a7309750298a75f77c60cb672630ba9085f69))
* **internal:** update pyright settings ([4393e83](https://github.com/prelude-so/python-sdk/commit/4393e83b8c2a5e6bc63235ecb0551adb9504c9ca))

## 0.3.0 (2025-04-11)

Full Changelog: [v0.2.0...v0.3.0](https://github.com/prelude-so/python-sdk/compare/v0.2.0...v0.3.0)
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "prelude-python-sdk"
version = "0.3.0"
version = "0.3.1"
description = "The official Python library for the Prelude API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down Expand Up @@ -42,7 +42,7 @@ Repository = "https://github.com/prelude-so/python-sdk"
managed = true
# version pins are in requirements-dev.lock
dev-dependencies = [
"pyright>=1.1.359",
"pyright==1.1.399",
"mypy",
"respx",
"pytest",
Expand Down Expand Up @@ -147,6 +147,7 @@ exclude = [
]

reportImplicitOverride = true
reportOverlappingOverload = false

reportImportCycles = false
reportPrivateUsage = false
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pydantic-core==2.27.1
# via pydantic
pygments==2.18.0
# via rich
pyright==1.1.392.post0
pyright==1.1.399
pytest==8.3.3
# via pytest-asyncio
pytest-asyncio==0.24.0
Expand Down
Loading