From c169e23abf4873540d6a3011230cca8054a820a4 Mon Sep 17 00:00:00 2001 From: Todd Campbell Date: Wed, 18 Dec 2019 14:27:05 -0800 Subject: [PATCH 1/3] Prepping for 4.1.1 release Signed-off-by: Todd Campbell --- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-network-checks/version.rb | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e84805d..9b68b86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin ## [Unreleased] +## [4.1.1] - 2019-12-18 +### Changed +- Updated README to conform with standardization guidelines (sensu-plugins/community#134) + ## [4.1.0] - 2019-012-12 ### Added - Updated asset build targets to support centos6 @@ -245,7 +249,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin * initial release, same as community repo -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/4.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/4.1.1...HEAD +[4.1.1]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/4.0.0...4.1.1 [4.1.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/4.0.0...4.1.0 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/3.2.1...4.0.0 [3.2.1]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/3.2.0...3.2.1 diff --git a/lib/sensu-plugins-network-checks/version.rb b/lib/sensu-plugins-network-checks/version.rb index fc0c22b..8a5e633 100644 --- a/lib/sensu-plugins-network-checks/version.rb +++ b/lib/sensu-plugins-network-checks/version.rb @@ -4,7 +4,7 @@ module SensuPluginsNetworkChecks module Version MAJOR = 4 MINOR = 1 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end From 09f3b46f3bbba5580987313bbf5a12f53aa76b8c Mon Sep 17 00:00:00 2001 From: Todd Campbell Date: Thu, 19 Dec 2019 13:13:30 -0800 Subject: [PATCH 2/3] update travisCI config to install bundler 2.x --- .travis.yml | 2 ++ sensu-plugins-network-checks.gemspec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6256d7f..3caaa3e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ services: - docker cache: - bundler +before_install: +- gem install bundler install: - bundle install rvm: diff --git a/sensu-plugins-network-checks.gemspec b/sensu-plugins-network-checks.gemspec index cc296dc..a40f231 100644 --- a/sensu-plugins-network-checks.gemspec +++ b/sensu-plugins-network-checks.gemspec @@ -40,7 +40,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength s.add_runtime_dependency 'whois', '>= 4.0' s.add_runtime_dependency 'whois-parser', '~> 1.0.0' - s.add_development_dependency 'bundler', '~> 1.7' + s.add_development_dependency 'bundler', '~> 2.1' s.add_development_dependency 'codeclimate-test-reporter', '~> 0.4' s.add_development_dependency 'github-markup', '~> 3.0' s.add_development_dependency 'pry', '~> 0.10' From 031e456751f3876ad877e82be12c7543f21ae515 Mon Sep 17 00:00:00 2001 From: Todd Campbell Date: Thu, 19 Dec 2019 13:13:58 -0800 Subject: [PATCH 3/3] update travisCI config to install bundler 2.x --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b68b86..6a34c19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugin ## [4.1.1] - 2019-12-18 ### Changed - Updated README to conform with standardization guidelines (sensu-plugins/community#134) +- Updated bundler development depedency to '~> 2.1' ## [4.1.0] - 2019-012-12 ### Added