diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 96dfab3..c18333e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.19.1" + ".": "0.19.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 26b2b4c..9f8ae44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.19.2 (2025-12-18) + +Full Changelog: [v0.19.1...v0.19.2](https://github.com/sst/opencode-sdk-go/compare/v0.19.1...v0.19.2) + +### Bug Fixes + +* skip usage tests that don't work with Prism ([dc3c60e](https://github.com/sst/opencode-sdk-go/commit/dc3c60ecc63a66a08097f181358e09fd8a49185a)) + ## 0.19.1 (2025-12-06) Full Changelog: [v0.19.0...v0.19.1](https://github.com/sst/opencode-sdk-go/compare/v0.19.0...v0.19.1) diff --git a/README.md b/README.md index 0ff3512..f184c3e 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Or to pin the version: ```sh -go get -u 'github.com/sst/opencode-sdk-go@v0.19.1' +go get -u 'github.com/sst/opencode-sdk-go@v0.19.2' ``` diff --git a/internal/version.go b/internal/version.go index 6402b25..37a9f46 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.19.1" // x-release-please-version +const PackageVersion = "0.19.2" // x-release-please-version diff --git a/usage_test.go b/usage_test.go index 2652b58..bb2aa20 100644 --- a/usage_test.go +++ b/usage_test.go @@ -23,6 +23,7 @@ func TestUsage(t *testing.T) { client := opencode.NewClient( option.WithBaseURL(baseURL), ) + t.Skip("Prism tests are disabled") sessions, err := client.Session.List(context.TODO(), opencode.SessionListParams{}) if err != nil { t.Error(err)