diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d93735d..0618d8a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.2.0] - 2023-11-15 + +### Added + +- Add text-to-speech! Thank you [@codergeek121](https://github.com/codergeek121) + ## [6.1.0] - 2023-11-14 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index cc6dc237..89a3be6d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-openai (6.1.0) + ruby-openai (6.2.0) event_stream_parser (>= 0.3.0, < 1.0.0) faraday (>= 1) faraday-multipart (>= 1) diff --git a/lib/openai/version.rb b/lib/openai/version.rb index 2656d863..9ba2f9d4 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,3 +1,3 @@ module OpenAI - VERSION = "6.1.0".freeze + VERSION = "6.2.0".freeze end