From dcf6b8d562d11996b0249659e2cec12cf811ecef Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Tue, 4 Dec 2018 13:18:04 +0000 Subject: [PATCH] Remove hard ruby version requirement --- Changelog.md | 4 ++++ Gemfile.lock | 10 +++++----- lib/mutant/version.rb | 2 +- mutant-rspec.gemspec | 2 -- mutant.gemspec | 4 +--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Changelog.md b/Changelog.md index 94bf725b..59a94653 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# v0.8.22 2018-12-04 + +* Remove hard ruby version requirement. 2.5 is still the only officially supported version. + # v0.8.21 2018-12-03 * Change to modern ast format via unparser-0.4.1. diff --git a/Gemfile.lock b/Gemfile.lock index ab8e3932..667a3cd2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - mutant (0.8.20) + mutant (0.8.22) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) anima (~> 0.3.0) @@ -15,9 +15,9 @@ PATH parser (~> 2.5.1) procto (~> 0.0.2) regexp_parser (~> 1.2) - unparser (~> 0.4.0) - mutant-rspec (0.8.20) - mutant (~> 0.8.20) + unparser (~> 0.4.2) + mutant-rspec (0.8.22) + mutant (~> 0.8.22) rspec-core (>= 3.4.0, < 4.0.0) GEM @@ -141,7 +141,7 @@ GEM simplecov-html (0.10.2) thread_safe (0.3.6) unicode-display_width (1.4.0) - unparser (0.4.0) + unparser (0.4.2) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) concord (~> 0.1.5) diff --git a/lib/mutant/version.rb b/lib/mutant/version.rb index 2e7611d7..738e127e 100644 --- a/lib/mutant/version.rb +++ b/lib/mutant/version.rb @@ -2,5 +2,5 @@ module Mutant # Current mutant version - VERSION = '0.8.21'.freeze + VERSION = '0.8.22'.freeze end # Mutant diff --git a/mutant-rspec.gemspec b/mutant-rspec.gemspec index ca220c39..d802f9db 100644 --- a/mutant-rspec.gemspec +++ b/mutant-rspec.gemspec @@ -19,6 +19,4 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency('mutant', "~> #{gem.version}") gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 4.0.0') - - gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5') end diff --git a/mutant.gemspec b/mutant.gemspec index 63a67d56..25b7e610 100644 --- a/mutant.gemspec +++ b/mutant.gemspec @@ -21,8 +21,6 @@ Gem::Specification.new do |gem| gem.extra_rdoc_files = %w[LICENSE] gem.executables = %w[mutant] - gem.required_ruby_version = '>= 2.5' - gem.add_runtime_dependency('abstract_type', '~> 0.0.7') gem.add_runtime_dependency('adamantium', '~> 0.2.0') gem.add_runtime_dependency('anima', '~> 0.3.0') @@ -36,7 +34,7 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency('parser', '~> 2.5.1') gem.add_runtime_dependency('procto', '~> 0.0.2') gem.add_runtime_dependency('regexp_parser', '~> 1.2') - gem.add_runtime_dependency('unparser', '~> 0.4.1') + gem.add_runtime_dependency('unparser', '~> 0.4.2') gem.add_development_dependency('devtools', '~> 0.1.22') gem.add_development_dependency('parallel', '~> 1.3')