summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-03-19 17:12:12 -0700
committerTim Smith <tsmith@chef.io>2019-03-19 17:12:12 -0700
commitb3d4a9ac7418dc5c6017883d975cfa0386ddb1bb (patch)
tree262e8c8397ac7969d997bbcc262e3f64d96def73
parent2547ffd5384727794fcb009e0bd9c786f6771eb5 (diff)
downloadmixlib-cli-b3d4a9ac7418dc5c6017883d975cfa0386ddb1bb.tar.gz
Add back support for Ruby 2.4
This allows us to use this on Chef 14 and Chef 15 and simplifies our maint for the next year. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.expeditor/config.yml2
-rw-r--r--mixlib-cli.gemspec2
2 files changed, 3 insertions, 1 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml
index 128952f..53aa307 100644
--- a/.expeditor/config.yml
+++ b/.expeditor/config.yml
@@ -16,6 +16,8 @@ github:
# allow bumping the minor release via label
minor_bump_labels:
- "Expeditor: Bump Version Minor"
+ mmajor_bump_labels:
+ - "Expeditor: Bump Version Major"
changelog:
rollup_header: Changes not yet released to rubygems.org
diff --git a/mixlib-cli.gemspec b/mixlib-cli.gemspec
index a6ded92..cb59eea 100644
--- a/mixlib-cli.gemspec
+++ b/mixlib-cli.gemspec
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.email = "info@chef.io"
s.homepage = "https://www.github.com/mixlib-cli"
s.license = "Apache-2.0"
- s.required_ruby_version = ">= 2.5"
+ s.required_ruby_version = ">= 2.4"
s.require_path = "lib"
s.files = %w{LICENSE NOTICE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }