From 745d574b7383ed0a3b6a60b0ed7a0e54775002df Mon Sep 17 00:00:00 2001 From: Alex Rudall Date: Mon, 4 Dec 2023 16:32:08 +0000 Subject: [PATCH] Bump version --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/openai/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a32be23..953f382f 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.3.1] - 2023-12-04 + +### Fixed + +- Allow any kind of file (eg. PDFs) to be uploaded to the API, not just JSONL files. Thank you [@stefan-kp](https://github.com/stefan-kp) for the PR! + ## [6.3.0] - 2023-11-26 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index a9b29979..de0f401b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ruby-openai (6.3.0) + ruby-openai (6.3.1) 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 df5b7cf1..37d8cc83 100644 --- a/lib/openai/version.rb +++ b/lib/openai/version.rb @@ -1,3 +1,3 @@ module OpenAI - VERSION = "6.3.0".freeze + VERSION = "6.3.1".freeze end