Skip to content

Commit ca95d11

Browse files
0.19.3 (#905)
* 0.19.3 * Add ruby 3.4 to the testing matrix * Add csv to dependency list * Bump nokogiri
1 parent 41e232b commit ca95d11

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
ruby: ["3.1", "3.2", "3.3"]
19+
ruby: ["3.1", "3.2", "3.3", "3.4"]
2020

2121
services:
2222
postgres:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
- [SECURITY]: A change which fixes a security vulnerability.
1111

1212
## [Unreleased]
13+
14+
## [0.19.3] - 2025-01-13
1315
- [BUGFIX] [https://github.com/patterns-ai-core/langchainrb/pull/900] Empty text content should not be set when content is nil when using AnthropicMessage
1416

1517
## [0.19.2] - 2024-11-26

Gemfile.lock

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
langchainrb (0.19.2)
4+
langchainrb (0.19.3)
55
baran (~> 0.1.9)
6+
csv
67
json-schema (~> 4)
78
matrix
89
pragmatic_segmenter (~> 0.3.0)
@@ -81,6 +82,7 @@ GEM
8182
bigdecimal
8283
rexml
8384
crass (1.0.6)
85+
csv (3.3.2)
8486
date (3.3.4)
8587
diff-lcs (1.5.1)
8688
docx (0.8.0)
@@ -242,18 +244,20 @@ GEM
242244
timeout
243245
net-smtp (0.5.0)
244246
net-protocol
245-
nokogiri (1.16.8)
247+
nokogiri (1.18.1)
246248
mini_portile2 (~> 2.8.2)
247249
racc (~> 1.4)
248-
nokogiri (1.16.8-aarch64-linux)
250+
nokogiri (1.18.1-aarch64-linux-gnu)
249251
racc (~> 1.4)
250-
nokogiri (1.16.8-arm-linux)
252+
nokogiri (1.18.1-arm-linux-gnu)
251253
racc (~> 1.4)
252-
nokogiri (1.16.8-arm64-darwin)
254+
nokogiri (1.18.1-arm64-darwin)
253255
racc (~> 1.4)
254-
nokogiri (1.16.8-x86_64-darwin)
256+
nokogiri (1.18.1-x86_64-darwin)
255257
racc (~> 1.4)
256-
nokogiri (1.16.8-x86_64-linux)
258+
nokogiri (1.18.1-x86_64-linux-gnu)
259+
racc (~> 1.4)
260+
nokogiri (1.18.1-x86_64-linux-musl)
257261
racc (~> 1.4)
258262
os (1.1.4)
259263
paco (0.2.3)

langchain.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Gem::Specification.new do |spec|
2828
# dependencies
2929
# Not sure if we should require this as it only applies to OpenAI usecase.
3030
spec.add_dependency "baran", "~> 0.1.9"
31+
spec.add_dependency "csv"
3132
spec.add_dependency "json-schema", "~> 4"
3233
spec.add_dependency "zeitwerk", "~> 2.5"
3334
spec.add_dependency "pragmatic_segmenter", "~> 0.3.0"

lib/langchain/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Langchain
4-
VERSION = "0.19.2"
4+
VERSION = "0.19.3"
55
end

0 commit comments

Comments
 (0)