From 1e363ea9fd04f66ce4779961ec3f858b17a74411 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 02:14:43 +0000 Subject: [PATCH 1/3] fix(internal): resolve build failures --- scripts/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lint b/scripts/lint index 251b9174..ae34d42b 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 . From 43b6c5206c20d131411a9da1b2561fa93a83c3a4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 02:16:56 +0000 Subject: [PATCH 2/3] feat(stlc): configurable CI runner and private-production-repo support in workflow templates --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f16396e1..558e7b1c 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/conductor-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/conductor-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/conductor-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 From a933ddeeb7fc1bf17826cded4c3e2d106538235d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 02:17:50 +0000 Subject: [PATCH 3/3] release: 1.91.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- src/conductor/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 407051a9..f18270d5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.90.0" + ".": "1.91.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index da025706..ec1aa96b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.91.0 (2026-07-18) + +Full Changelog: [v1.90.0...v1.91.0](https://github.com/conductor-is/quickbooks-desktop-python/compare/v1.90.0...v1.91.0) + +### Features + +* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([43b6c52](https://github.com/conductor-is/quickbooks-desktop-python/commit/43b6c5206c20d131411a9da1b2561fa93a83c3a4)) + + +### Bug Fixes + +* **internal:** resolve build failures ([1e363ea](https://github.com/conductor-is/quickbooks-desktop-python/commit/1e363ea9fd04f66ce4779961ec3f858b17a74411)) + ## 1.90.0 (2026-07-02) Full Changelog: [v1.89.0...v1.90.0](https://github.com/conductor-is/quickbooks-desktop-python/compare/v1.89.0...v1.90.0) diff --git a/pyproject.toml b/pyproject.toml index a67a6c27..36a722e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "conductor-py" -version = "1.90.0" +version = "1.91.0" description = "The official Python library for the conductor API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/conductor/_version.py b/src/conductor/_version.py index 2d3a21e4..df57520e 100644 --- a/src/conductor/_version.py +++ b/src/conductor/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "conductor" -__version__ = "1.90.0" # x-release-please-version +__version__ = "1.91.0" # x-release-please-version