diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1cfe7eb3..aa39267a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.75.0" + ".": "0.76.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 19636b9d..5d163274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 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) + +### Features + +* require Ruby 3.3 or newer ([#322](https://github.com/openai/openai-ruby/issues/322)) ([f40aef1](https://github.com/openai/openai-ruby/commit/f40aef1892a4ebafaf4c254522dbf12f3c04ba78)) + + +### Bug Fixes + +* preserve generic Linux ffi lock entry ([#323](https://github.com/openai/openai-ruby/issues/323)) ([491eacb](https://github.com/openai/openai-ruby/commit/491eacbe59aa77586731a7929f487a4dcd6f7113)) + ## 0.75.0 (2026-07-31) Full Changelog: [v0.74.0...v0.75.0](https://github.com/openai/openai-ruby/compare/v0.74.0...v0.75.0) diff --git a/Gemfile.lock b/Gemfile.lock index 80b82c9e..667debba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - openai (0.75.0) + openai (0.76.0) base64 cgi connection_pool diff --git a/README.md b/README.md index a02bd76c..7a0aac2d 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.75.0" +gem "openai", "~> 0.76.0" ``` diff --git a/lib/openai/version.rb b/lib/openai/version.rb index e43313a2..5eb07b5c 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OpenAI - VERSION = "0.75.0" + VERSION = "0.76.0" end