summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml10
-rw-r--r--VERSION2
-rw-r--r--lib/mixlib/shellout/version.rb2
-rw-r--r--mixlib-shellout.gemspec2
4 files changed, 9 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index eea4794..5850028 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,15 @@
-sudo: false
language: ruby
cache: bundler
distro: xenial
+before_install:
+ - gem install bundler
+ - bundle --version
+ - gem update --system
+ - gem --version
+
matrix:
include:
- - rvm: 2.2.10
- - rvm: 2.3.8
- - rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6
- rvm: ruby-head
diff --git a/VERSION b/VERSION
index ab6d278..4a36342 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.4 \ No newline at end of file
+3.0.0
diff --git a/lib/mixlib/shellout/version.rb b/lib/mixlib/shellout/version.rb
index 06439e2..21b5e5e 100644
--- a/lib/mixlib/shellout/version.rb
+++ b/lib/mixlib/shellout/version.rb
@@ -1,5 +1,5 @@
module Mixlib
class ShellOut
- VERSION = "2.4.4".freeze
+ VERSION = "3.0.0".freeze
end
end
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec
index 6ff55bb..010eef4 100644
--- a/mixlib-shellout.gemspec
+++ b/mixlib-shellout.gemspec
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.email = "info@chef.io"
s.homepage = "https://github.com/chef/mixlib-shellout"
- s.required_ruby_version = ">= 2.2"
+ s.required_ruby_version = ">= 2.5"
s.require_path = "lib"
s.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }