diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 078b9e2..96bcfa0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.8.0" + ".": "3.8.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ff2f3c..f387d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.8.1 (2025-11-04) + +Full Changelog: [v3.8.0...v3.8.1](https://github.com/openai/openai-go/compare/v3.8.0...v3.8.1) + +### Bug Fixes + +* **api:** fix nullability of logprobs ([b5aeb99](https://github.com/openai/openai-go/commit/b5aeb999e5088db4f9d1232a202a568a4a283019)) + ## 3.8.0 (2025-11-03) Full Changelog: [v3.7.0...v3.8.0](https://github.com/openai/openai-go/compare/v3.7.0...v3.8.0) diff --git a/README.md b/README.md index 6827c1c..6614483 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Or to pin the version: ```sh -go get -u 'github.com/openai/openai-go/v2@v3.8.0' +go get -u 'github.com/openai/openai-go/v2@v3.8.1' ``` diff --git a/internal/version.go b/internal/version.go index e0cfdfb..a65f147 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "3.8.0" // x-release-please-version +const PackageVersion = "3.8.1" // x-release-please-version