diff --git a/Gemfile.lock b/Gemfile.lock index 82c6de9..777949e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,9 @@ PATH remote: . specs: - braintrust (0.3.1) + braintrust (0.3.2) logger (>= 1.0) - openssl (~> 3.3.1) + openssl (>= 3.3.1, < 5.0) opentelemetry-exporter-otlp (~> 0.28) opentelemetry-sdk (~> 1.3) diff --git a/braintrust.gemspec b/braintrust.gemspec index 49eec91..7000eb0 100644 --- a/braintrust.gemspec +++ b/braintrust.gemspec @@ -38,5 +38,5 @@ Gem::Specification.new do |spec| # that occur with OpenSSL 3.6 + Ruby (certificate verify failed: unable to get certificate CRL). # See: https://github.com/ruby/openssl/issues/949 # This dependency may be removable in future Ruby versions once the fix is widely available. - spec.add_runtime_dependency "openssl", "~> 3.3.1" + spec.add_runtime_dependency "openssl", ">= 3.3.1", "< 5.0" end diff --git a/lib/braintrust/version.rb b/lib/braintrust/version.rb index 91eca89..8885811 100644 --- a/lib/braintrust/version.rb +++ b/lib/braintrust/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Braintrust - VERSION = "0.3.1" + VERSION = "0.3.2" end