summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-01-04 13:55:21 -0800
committerGitHub <noreply@github.com>2019-01-04 13:55:21 -0800
commitbc8400211fae6980bef6856fc619a1649dd03d5a (patch)
tree67d40ebc9df6f77b47b705f29fa062811dc2ccc1
parent1bc2f7a1d1a9e89efe8887eaa8fbe46cdf910453 (diff)
parent9a022ec78c580ded46816c4673916ba46f8a6f9f (diff)
downloadmixlib-authentication-bc8400211fae6980bef6856fc619a1649dd03d5a.tar.gz
Merge pull request #45 from chef/lcg/version-bump
update travis, drop ruby < 2.5, major version bump
-rw-r--r--.travis.yml7
-rw-r--r--VERSION2
-rw-r--r--lib/mixlib/authentication/version.rb4
-rw-r--r--mixlib-authentication.gemspec1
4 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index cf0a799..9c76a5c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,6 @@
-sudo: false
language: ruby
+cache: bundler
+distro: xenial
before_install:
- gem install bundler
@@ -9,10 +10,8 @@ before_install:
matrix:
include:
- - rvm: 2.2.10
- - rvm: 2.3.8
- - rvm: 2.4.5
- rvm: 2.5.3
+ - rvm: 2.6.0
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
diff --git a/VERSION b/VERSION
index c5864dc..4a36342 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.1.5 \ No newline at end of file
+3.0.0
diff --git a/lib/mixlib/authentication/version.rb b/lib/mixlib/authentication/version.rb
index 8043d90..81da2f5 100644
--- a/lib/mixlib/authentication/version.rb
+++ b/lib/mixlib/authentication/version.rb
@@ -1,5 +1,5 @@
#
-# Copyright:: Copyright (c) 2010-2018 Chef Software, Inc.
+# Copyright:: Copyright (c) 2010-2019, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -16,6 +16,6 @@
module Mixlib
module Authentication
- VERSION = "2.1.5"
+ VERSION = "3.0.0"
end
end
diff --git a/mixlib-authentication.gemspec b/mixlib-authentication.gemspec
index eeb46c6..bb7ea24 100644
--- a/mixlib-authentication.gemspec
+++ b/mixlib-authentication.gemspec
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
s.author = "Chef Software, Inc."
s.email = "info@chef.io"
s.homepage = "https://github.com/chef/mixlib-authentication"
+ s.required_ruby_version = ">= 2.5"
s.files = %w{LICENSE} + Dir.glob("lib/**/*")
s.require_paths = ["lib"]