From 6cdef416ffd9e855ce09abe84970505ad7c5d318 Mon Sep 17 00:00:00 2001 From: Alex Rudall Date: Mon, 26 Dec 2022 23:20:20 +0000 Subject: [PATCH] 3.0.1 --- CHANGELOG.md | 9 +++++++-- Gemfile.lock | 2 +- lib/ruby/openai/version.rb | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d5b4bf..b40d55d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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). +## [3.0.1] - 2022-12-26 + +### Removed + +- [BREAKING] Remove deprecated answers, classifications, embeddings, engines and search endpoints. +- [BREAKING] Remove ability to pass engine to completions and embeddings outside of the parameters hash. + ## [3.0.0] - 2022-12-26 ### Added @@ -15,8 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - [BREAKING] Remove ability to include access_token directly via ENV vars. -- [BREAKING] Remove deprecated answers, classifications, embeddings, engines and search endpoints. -- [BREAKING] Remove ability to pass engine to completions and embeddings outside of the parameters hash. - [BREAKING] Remove ability to pass API version directly to endpoints. ## [2.3.0] - 2022-12-23 diff --git a/Gemfile.lock b/Gemfile.lock index 228a5fbd..0a47d515 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-openai (3.0.0) + ruby-openai (3.0.1) httparty (>= 0.18.1, < 0.21.0) GEM diff --git a/lib/ruby/openai/version.rb b/lib/ruby/openai/version.rb index 82041612..1ff56cc7 100644 --- a/lib/ruby/openai/version.rb +++ b/lib/ruby/openai/version.rb @@ -1,5 +1,5 @@ module Ruby module OpenAI - VERSION = "3.0.0".freeze + VERSION = "3.0.1".freeze end end