From 9ca9fd6b05183f3107fbd5666f74d32366935c54 Mon Sep 17 00:00:00 2001 From: Andrei Bondarev Date: Tue, 30 May 2023 12:57:41 -0400 Subject: [PATCH] version 0.3.15 (#84) --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33e25ad59..76635ee3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## [Unreleased] +## [0.3.15] - 2023-05-30 +- Drop Ruby 2.7 support. It had reached EOD. +- Bump pgvector-ruby to 0.2 +- 🚚 Loaders + - Support for options and block to be passed to CSV processor + ## [0.3.14] - 2023-05-28 - 🔍 Vectorsearch - Not relying on Weaviate modules anymore diff --git a/Gemfile.lock b/Gemfile.lock index 43c0f9bd0..89f3f1633 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - langchainrb (0.3.14) + langchainrb (0.3.15) GEM remote: https://rubygems.org/ diff --git a/lib/version.rb b/lib/version.rb index 47acbea18..549dbc30f 100644 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langchain - VERSION = "0.3.14" + VERSION = "0.3.15" end