File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module Exa
4- VERSION = "1.1.2 "
4+ VERSION = "1.1.3 "
55end
You can’t perform that action at this time.
0 commit comments