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 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..eae5259 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.3.0 (2026-07-18) + +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 ([e2518e6](https://github.com/SportsGameOdds/sports-odds-api-python/commit/e2518e625b94fcffcc38687f1fdc7a61cdacf28c)) + ## 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 bd30217..b91c429 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