diff --git a/CHANGELOG.md b/CHANGELOG.md index f24b3c540..1c7797fb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## [Unreleased] + +## [0.11.0] - Delete previously deprecated `Langchain::Agent::ReActAgent` and `Langchain::Agent::SQLQueryAgent` classes +- New `Langchain::Agent::FileSystem` tool that can read files, write to files, and list the contents of a directory ## [0.10.3] - Bump dependencies diff --git a/Gemfile.lock b/Gemfile.lock index 6b44c4cd1..a4af7da37 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - langchainrb (0.10.3) + langchainrb (0.11.0) activesupport (>= 7.0.8) baran (~> 0.1.9) colorize (~> 1.1.0) @@ -417,14 +417,14 @@ GEM standard stringio (3.1.0) thor (1.3.0) - tiktoken_ruby (0.0.7-aarch64-linux) - tiktoken_ruby (0.0.7-arm-linux) - tiktoken_ruby (0.0.7-arm64-darwin) - tiktoken_ruby (0.0.7-x86_64-darwin) - tiktoken_ruby (0.0.7-x86_64-linux) - tiktoken_ruby (0.0.7-x86_64-linux-musl) tiktoken_ruby (0.0.8) rb_sys (>= 0.9.86) + tiktoken_ruby (0.0.8-aarch64-linux) + tiktoken_ruby (0.0.8-arm-linux) + tiktoken_ruby (0.0.8-arm64-darwin) + tiktoken_ruby (0.0.8-x86_64-darwin) + tiktoken_ruby (0.0.8-x86_64-linux) + tiktoken_ruby (0.0.8-x86_64-linux-musl) timeout (0.4.1) to_bool (2.0.0) trailblazer-option (0.1.2) diff --git a/lib/langchain/version.rb b/lib/langchain/version.rb index a5a963aa8..31e2debfc 100644 --- a/lib/langchain/version.rb +++ b/lib/langchain/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langchain - VERSION = "0.10.3" + VERSION = "0.11.0" end