From 6f45b498ef3a56d63047dd7bcfc19794de3ecb65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 07:54:18 +0000 Subject: [PATCH] Update prism requirement from ~> 0.24.0 to >= 0.24, < 0.28 Updates the requirements on [prism](https://github.com/ruby/prism) to permit the latest version. - [Release notes](https://github.com/ruby/prism/releases) - [Changelog](https://github.com/ruby/prism/blob/main/CHANGELOG.md) - [Commits](https://github.com/ruby/prism/compare/v0.24.0...v0.27.0) --- updated-dependencies: - dependency-name: prism dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 5 +++-- rbs-inline.gemspec | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 023ba79..0bd8a23 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: rbs-inline (0.1.0) - prism (~> 0.24.0) + prism (>= 0.24, < 0.28) rbs (~> 3.5.0.pre) GEM @@ -41,7 +41,7 @@ GEM parser (3.3.0.5) ast (~> 2.4.1) racc - prism (0.24.0) + prism (0.27.0) racc (1.7.3) rainbow (3.1.1) rake (13.2.0) @@ -76,6 +76,7 @@ GEM PLATFORMS arm64-darwin-22 arm64-darwin-23 + x86_64-linux DEPENDENCIES minitest (~> 5.0) diff --git a/rbs-inline.gemspec b/rbs-inline.gemspec index f651d04..cb05f8e 100644 --- a/rbs-inline.gemspec +++ b/rbs-inline.gemspec @@ -28,6 +28,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_dependency "prism", "~> 0.24.0" + spec.add_dependency "prism", ">= 0.24", "< 0.28" spec.add_dependency "rbs", "~> 3.5.0.pre" end