diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7e334b0..262c3b7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.8.1" + ".": "1.8.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index da353bf..16af7ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.8.2 (2025-06-27) + +Full Changelog: [v1.8.1...v1.8.2](https://github.com/openai/openai-go/compare/v1.8.1...v1.8.2) + +### Bug Fixes + +* don't try to deserialize as json when ResponseBodyInto is []byte ([74ad0f8](https://github.com/openai/openai-go/commit/74ad0f8fab0f956234503a9ba26fbd395944dcf8)) +* **pagination:** check if page data is empty in GetNextPage ([c9becdc](https://github.com/openai/openai-go/commit/c9becdc9908f2a1961160837c6ab8cd9064e7854)) + ## 1.8.1 (2025-06-26) Full Changelog: [v1.8.0...v1.8.1](https://github.com/openai/openai-go/compare/v1.8.0...v1.8.1) diff --git a/README.md b/README.md index 6140bb9..897f460 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Or to pin the version: ```sh -go get -u 'github.com/openai/openai-go@v1.8.1' +go get -u 'github.com/openai/openai-go@v1.8.2' ``` diff --git a/internal/version.go b/internal/version.go index ab2ae2c..c5df29a 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "1.8.1" // x-release-please-version +const PackageVersion = "1.8.2" // x-release-please-version