From 0e7276ee5b58f81151a10dfaee5876c05db6ae91 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:22 +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 2ad01d0..bad3602 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: lint: timeout-minutes: 15 name: lint - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-java' && '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: @@ -43,7 +43,7 @@ jobs: permissions: contents: read id-token: write - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-java' && '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: @@ -82,7 +82,7 @@ jobs: test: timeout-minutes: 15 name: test - runs-on: ${{ github.repository == 'stainless-sdks/sports-odds-api-java' && '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 5df34082cfa4ae4e0d98df95cedad233704d944a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 19:32:17 +0000 Subject: [PATCH 2/2] release: 1.4.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ build.gradle.kts | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2a8f4ff..3e9af1b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.4.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 599718e..a431c3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 1.4.0 (2026-07-18) + +Full Changelog: [v1.3.0...v1.4.0](https://github.com/SportsGameOdds/sports-odds-api-java/compare/v1.3.0...v1.4.0) + +### Features + +* add support for the /markets endpoint ([672cd4c](https://github.com/SportsGameOdds/sports-odds-api-java/commit/672cd4c91890f09d3f138719617064e8933485d7)) +* initial stlc build ([5544637](https://github.com/SportsGameOdds/sports-odds-api-java/commit/5544637f0f68cb49389417c125225e49b33608ae)) +* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([0e7276e](https://github.com/SportsGameOdds/sports-odds-api-java/commit/0e7276ee5b58f81151a10dfaee5876c05db6ae91)) + + +### Chores + +* adopt current stlc generator output ([a17604d](https://github.com/SportsGameOdds/sports-odds-api-java/commit/a17604d2efc855a2200b39d63e1b4ab805398185)) + ## 1.3.0 (2026-07-08) Full Changelog: [v1.2.1...v1.3.0](https://github.com/SportsGameOdds/sports-odds-api-java/compare/v1.2.1...v1.3.0) diff --git a/build.gradle.kts b/build.gradle.kts index e0a1f38..4b08f95 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.sportsgameodds.api" - version = "1.3.0" // x-release-please-version + version = "1.4.0" // x-release-please-version } subprojects {