From f5dd8539567a36de311d353188a8182e2f748496 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 19:06:32 +0000 Subject: [PATCH] release: 0.77.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/openai/version.rb | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aa39267a..5c03edcd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.76.0" + ".": "0.77.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d163274..507c74d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.77.0](https://github.com/openai/openai-ruby/compare/v0.76.0...v0.77.0) (2026-08-03) + + +### Features + +* **api:** promote Ruby SDK changes ([#326](https://github.com/openai/openai-ruby/issues/326)) ([d46c2e3](https://github.com/openai/openai-ruby/commit/d46c2e336f3c839cdd491c36d2b823ad47b49c88)) + ## 0.76.0 (2026-07-31) Full Changelog: [v0.75.0...v0.76.0](https://github.com/openai/openai-ruby/compare/v0.75.0...v0.76.0) diff --git a/Gemfile.lock b/Gemfile.lock index 667debba..ae7c2ee3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - openai (0.76.0) + openai (0.77.0) base64 cgi connection_pool diff --git a/README.md b/README.md index 7a0aac2d..65dca6f5 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.76.0" +gem "openai", "~> 0.77.0" ``` diff --git a/lib/openai/version.rb b/lib/openai/version.rb index 5eb07b5c..09bc6a26 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OpenAI - VERSION = "0.76.0" + VERSION = "0.77.0" end