From e9a4447403e5d4984b7961e8edc6d96e309c3866 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 16:43:38 +0000 Subject: [PATCH] release: 0.68.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/openai/version.rb | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0b8a7c68..7b87cbd0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.68.0" + ".": "0.68.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 971941ff..1fb2dd70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.68.1 (2026-06-24) + +Full Changelog: [v0.68.0...v0.68.1](https://github.com/openai/openai-ruby/compare/v0.68.0...v0.68.1) + +### Bug Fixes + +* multipart filename quoting ([#279](https://github.com/openai/openai-ruby/issues/279)) ([0c2c79a](https://github.com/openai/openai-ruby/commit/0c2c79a03df51e56b8f34bbf905c5798536d9ed8)) + + +### Documentation + +* fix wording in Sorbet example ([#290](https://github.com/openai/openai-ruby/issues/290)) ([2f34487](https://github.com/openai/openai-ruby/commit/2f34487e709761320107e142e6bfbbd0dfc82ba0)) + ## 0.68.0 (2026-06-17) Full Changelog: [v0.67.0...v0.68.0](https://github.com/openai/openai-ruby/compare/v0.67.0...v0.68.0) diff --git a/Gemfile.lock b/Gemfile.lock index 1c4c8802..8a2a4240 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - openai (0.68.0) + openai (0.68.1) base64 cgi connection_pool diff --git a/README.md b/README.md index 64fb7775..bfb74847 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "openai", "~> 0.68.0" +gem "openai", "~> 0.68.1" ``` diff --git a/lib/openai/version.rb b/lib/openai/version.rb index 5b0a6d06..dd8995af 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OpenAI - VERSION = "0.68.0" + VERSION = "0.68.1" end