Skip to content

Commit 2eb4725

Browse files
committed
Release 1.1.3
1 parent e18f40d commit 2eb4725

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [1.1.3] - 2025-10-30
4+
- Extend compatibility down to Ruby 3.0.x by lowering the minimum required Ruby version.
5+
36
## [1.1.2] - 2025-10-27
47
- Broaden support to Ruby 3.1+ by relaxing the gem's minimum Ruby requirement.
58

exa-ai-ruby.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.homepage = "https://github.com/vicentereig/exa-ruby"
1414
spec.license = "MIT"
1515

16-
spec.required_ruby_version = ">= 3.1"
16+
spec.required_ruby_version = ">= 3.0.0"
1717

1818
spec.metadata["homepage_uri"] = spec.homepage
1919
spec.metadata["source_code_uri"] = spec.homepage
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
2727

2828
spec.add_dependency "connection_pool", "~> 2.4"
2929
spec.add_dependency "sorbet-runtime", "~> 0.5"
30-
spec.add_dependency "dspy-schema", "~> 1.0"
30+
spec.add_dependency "dspy-schema", "~> 1.0", ">= 1.0.1"
3131
spec.add_dependency "thor", "~> 1.3"
3232
spec.add_dependency "tty-table", "~> 0.12"
3333
spec.add_dependency "pastel", "~> 0.8"

lib/exa/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 Exa
4-
VERSION = "1.1.2"
4+
VERSION = "1.1.3"
55
end

0 commit comments

Comments
 (0)