From cafa1c4da4b4266e508e1c2d1a82f8f550ffc4d5 Mon Sep 17 00:00:00 2001 From: Alex Rudall Date: Wed, 27 Mar 2024 20:41:41 +0000 Subject: [PATCH] 6.4 --- CHANGELOG.md | 15 +++++++++++++++ Gemfile.lock | 2 +- lib/openai/version.rb | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953f382f..1c27f643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.4.0] - 2024-03-27 + +### Added + +- Add DALLĀ·E 3 to specs and README - thanks to [@Gary-H9](https://github.com/Gary-H9) +- Add Whisper transcription language selection parameter to README - thanks to [@nfedyashev](https://github.com/nfedyashev) +- Add bundle exec rake lint and bundle exec rake test to make development easier - thanks to [@ignacio-chiazzo](https://github.com/ignacio-chiazzo) +- Add link to [https://github.com/sponsors/alexrudall](https://github.com/sponsors/alexrudall) when users run `bundle fund` + +### Fixed + +- Update README and spec to use tool calls instead of functions - thanks to [@mpallenjr](https://github.com/mpallenjr) +- Remove nonexistent Thread#list method - thanks again! to [@ignacio-chiazzo](https://github.com/ignacio-chiazzo) +- Update finetunes docs in README to use chat instead of completions endpoint - thanks to [@blefev](https://github.com/blefev) + ## [6.3.1] - 2023-12-04 ### Fixed diff --git a/Gemfile.lock b/Gemfile.lock index c5029880..d1d77ffb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-openai (6.3.1) + ruby-openai (6.4.0) event_stream_parser (>= 0.3.0, < 2.0.0) faraday (>= 1) faraday-multipart (>= 1) diff --git a/lib/openai/version.rb b/lib/openai/version.rb index 37d8cc83..b199c93e 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,3 +1,3 @@ module OpenAI - VERSION = "6.3.1".freeze + VERSION = "6.4.0".freeze end