From e381e0cf00592a7868a1e393722961a949f41e31 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:00:32 +0000 Subject: [PATCH 1/2] 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 1db852d..48e86a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: lint: timeout-minutes: 10 name: lint - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-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@v6 @@ -42,7 +42,7 @@ jobs: permissions: contents: read id-token: write - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} steps: - uses: actions/checkout@v6 @@ -78,7 +78,7 @@ jobs: test: timeout-minutes: 10 name: test - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-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@v6 From c9b268cecd15cc306f11a753dd6f25567600ff0b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 00:18:00 +0000 Subject: [PATCH 2/2] release: 1.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- src/sports_odds_api/_version.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d0ab664..2a8f4ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.3.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c007328..11bdc20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 1.3.0 (2026-07-19) + +Full Changelog: [v1.2.0...v1.3.0](https://github.com/SportsGameOdds/sports-odds-api-python/compare/v1.2.0...v1.3.0) + +### Features + +* add support for the /markets endpoint ([74744c1](https://github.com/SportsGameOdds/sports-odds-api-python/commit/74744c1bb24019bc51750dceecec21a6d5a2887e)) +* initial stlc build ([af83bed](https://github.com/SportsGameOdds/sports-odds-api-python/commit/af83bedf96e4ce36b6e29306aff5ebeed5b07d57)) +* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([e381e0c](https://github.com/SportsGameOdds/sports-odds-api-python/commit/e381e0cf00592a7868a1e393722961a949f41e31)) + + +### Bug Fixes + +* correct type errors and invalid kwargs in examples ([ad1a5aa](https://github.com/SportsGameOdds/sports-odds-api-python/commit/ad1a5aa2e22b2d77d424b8c3480794b195b9cfdf)) + ## 1.2.0 (2026-07-08) Full Changelog: [v1.1.2...v1.2.0](https://github.com/SportsGameOdds/sports-odds-api-python/compare/v1.1.2...v1.2.0) diff --git a/pyproject.toml b/pyproject.toml index 03d5e0b..1130824 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sports-odds-api" -version = "1.2.0" +version = "1.3.0" description = "The official Python library for the SportsGameOdds API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/sports_odds_api/_version.py b/src/sports_odds_api/_version.py index 7744eab..c9dc594 100644 --- a/src/sports_odds_api/_version.py +++ b/src/sports_odds_api/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "sports_odds_api" -__version__ = "1.2.0" # x-release-please-version +__version__ = "1.3.0" # x-release-please-version