From a9a67ba2f487d23adc7238c1151cab76a7fd9f01 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 22:17:12 +0000 Subject: [PATCH 1/3] chore(internal): spec update (#146) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 7b5235e..248cc36 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-0d64ca9e45f51b4279f87b205eeb3a3576df98407698ce053f2e2302c1c08df1.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-a39aca84ed97ebafb707ebd5221e2787c5a42ff3d98f2ffaea8a0dcd84cbcbcb.yml From 1bb23222e794c8439a56f765dee0c8d4e0db6eac Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:23:05 +0000 Subject: [PATCH 2/3] docs(readme): fix typo (#148) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fcafa0..778ed1d 100644 --- a/README.md +++ b/README.md @@ -326,7 +326,7 @@ if res.Name == "" { // true if `"name"` is either not present or explicitly null res.JSON.Name.IsNull() - // true if the `"name"` key was not present in the repsonse JSON at all + // true if the `"name"` key was not present in the response JSON at all res.JSON.Name.IsMissing() // When the API returns data that cannot be coerced to the expected type: From 80439593001ebe05e30539aa8586087a4900e39c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 05:02:26 +0000 Subject: [PATCH 3/3] release: 0.1.0-alpha.41 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- internal/version.go | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index db3930f..9c28aae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.40" + ".": "0.1.0-alpha.41" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d5a8f1..2115eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0-alpha.41 (2024-12-21) + +Full Changelog: [v0.1.0-alpha.40...v0.1.0-alpha.41](https://github.com/openai/openai-go/compare/v0.1.0-alpha.40...v0.1.0-alpha.41) + +### Chores + +* **internal:** spec update ([#146](https://github.com/openai/openai-go/issues/146)) ([a9a67ba](https://github.com/openai/openai-go/commit/a9a67ba2f487d23adc7238c1151cab76a7fd9f01)) + + +### Documentation + +* **readme:** fix typo ([#148](https://github.com/openai/openai-go/issues/148)) ([1bb2322](https://github.com/openai/openai-go/commit/1bb23222e794c8439a56f765dee0c8d4e0db6eac)) + ## 0.1.0-alpha.40 (2024-12-17) Full Changelog: [v0.1.0-alpha.39...v0.1.0-alpha.40](https://github.com/openai/openai-go/compare/v0.1.0-alpha.39...v0.1.0-alpha.40) diff --git a/README.md b/README.md index 778ed1d..c88920a 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.40' +go get -u 'github.com/openai/openai-go@v0.1.0-alpha.41' ``` diff --git a/internal/version.go b/internal/version.go index bd47681..905ef31 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.1.0-alpha.40" // x-release-please-version +const PackageVersion = "0.1.0-alpha.41" // x-release-please-version