From acb72c331dba15eb80d2c85388401741e4d4213a Mon Sep 17 00:00:00 2001 From: Andrei Bondarev Date: Wed, 2 Oct 2024 16:54:32 -0400 Subject: [PATCH] 0.17.0 (#806) --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/langchain/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7622dadeb..bbaf8fcd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ ## [Unreleased] + +## [0.17.0] - 2024-10-02 - [BREAKING] Langchain::Vectorsearch::Milvus was rewritten to work with newer milvus 0.10.0 gem - [BREAKING] Removing Langchain::LLM::GooglePalm - Assistant can now process image_urls in the messages (currently only for OpenAI and Mistral AI) diff --git a/Gemfile.lock b/Gemfile.lock index cdcda6f7e..5b807f2f9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - langchainrb (0.16.1) + langchainrb (0.17.0) baran (~> 0.1.9) json-schema (~> 4) matrix diff --git a/lib/langchain/version.rb b/lib/langchain/version.rb index c5bc8692f..e421a8118 100644 --- a/lib/langchain/version.rb +++ b/lib/langchain/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langchain - VERSION = "0.16.1" + VERSION = "0.17.0" end