diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2694650..15e7c84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: lint: timeout-minutes: 10 name: lint - runs-on: ${{ github.repository == 'stainless-sdks/deeptable-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 @@ -41,7 +41,7 @@ jobs: permissions: contents: read id-token: write - runs-on: ${{ github.repository == 'stainless-sdks/deeptable-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 @@ -78,7 +78,7 @@ jobs: test: timeout-minutes: 10 name: test - runs-on: ${{ github.repository == 'stainless-sdks/deeptable-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f158dc4..50f35a4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-beta.9" + ".": "0.1.0-beta.10" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c851fd2..c90e3ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0-beta.10 (2026-07-18) + +Full Changelog: [v0.1.0-beta.9...v0.1.0-beta.10](https://github.com/deeptable-com/deeptable-python/compare/v0.1.0-beta.9...v0.1.0-beta.10) + +### Features + +* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([c431f5b](https://github.com/deeptable-com/deeptable-python/commit/c431f5b987813bceb42e2277b23db4b8208970af)) + + +### Bug Fixes + +* **internal:** resolve build failures ([339076c](https://github.com/deeptable-com/deeptable-python/commit/339076c652b061ac88a42fdd662025db8c1c245d)) + ## 0.1.0-beta.9 (2026-05-13) Full Changelog: [v0.1.0-beta.8...v0.1.0-beta.9](https://github.com/deeptable-com/deeptable-python/compare/v0.1.0-beta.8...v0.1.0-beta.9) diff --git a/pyproject.toml b/pyproject.toml index ae3c249..0cc2b23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "deeptable" -version = "0.1.0-beta.9" +version = "0.1.0-beta.10" description = "The official Python library for the deeptable API" dynamic = ["readme"] license = "MIT" diff --git a/scripts/lint b/scripts/lint index c909f74..aea002f 100755 --- a/scripts/lint +++ b/scripts/lint @@ -13,7 +13,7 @@ else fi echo "==> Running pyright" -uv run pyright +uv run pyright -p . echo "==> Running mypy" uv run mypy . diff --git a/src/deeptable/_version.py b/src/deeptable/_version.py index e87202a..51d15bf 100644 --- a/src/deeptable/_version.py +++ b/src/deeptable/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "deeptable" -__version__ = "0.1.0-beta.9" # x-release-please-version +__version__ = "0.1.0-beta.10" # x-release-please-version