diff --git a/.release-please-manifest.json b/.release-please-manifest.json index de2352f..50b3403 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.52" + ".": "0.1.0-alpha.53" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 25968fa..12c4f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.0-alpha.53 (2025-02-04) + +Full Changelog: [v0.1.0-alpha.52...v0.1.0-alpha.53](https://github.com/openai/openai-go/compare/v0.1.0-alpha.52...v0.1.0-alpha.53) + +### Chores + +* **api:** delete deprecated method ([#208](https://github.com/openai/openai-go/issues/208)) ([0a927ba](https://github.com/openai/openai-go/commit/0a927ba16dfc5cde2a368e8a1040f5ba3cda7708)) +* **docs:** add docstring explaining streaming pattern ([#205](https://github.com/openai/openai-go/issues/205)) ([0bdb37f](https://github.com/openai/openai-go/commit/0bdb37f7efd9b338c32a1a83b90cecdb74f8ecce)) + + +### Documentation + +* **examples:** fix typo ([#207](https://github.com/openai/openai-go/issues/207)) ([05796de](https://github.com/openai/openai-go/commit/05796de39d3c1c88251fc42674bec1a53730c3d2)) + ## 0.1.0-alpha.52 (2025-02-03) Full Changelog: [v0.1.0-alpha.51...v0.1.0-alpha.52](https://github.com/openai/openai-go/compare/v0.1.0-alpha.51...v0.1.0-alpha.52) diff --git a/README.md b/README.md index 4b54e19..efbf8be 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Or to pin the version: ```sh -go get -u 'github.com/openai/openai-go@v0.1.0-alpha.52' +go get -u 'github.com/openai/openai-go@v0.1.0-alpha.53' ``` diff --git a/internal/version.go b/internal/version.go index 279513f..c33cc6a 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.1.0-alpha.52" // x-release-please-version +const PackageVersion = "0.1.0-alpha.53" // x-release-please-version