Skip to content

Commit a3112cd

Browse files
committed
use rvm master branch
1 parent 06c1c2f commit a3112cd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.0] - 2020-01-13
10+
### Changed
11+
- use RVM master branch to validate current ruby versions
12+
913
## [0.1.3] - 2019-07-30
1014
### Fixed
1115
- error output if updating the advisory-db failed

bin/check-ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require 'sensu-plugin/check/cli'
2626

2727
# Sensu plugin for checking bundle audit status
2828
class RubyVersionCheck < Sensu::Plugin::Check::CLI
29-
RVM_KNOWN_RUBIES_URL = 'https://raw.githubusercontent.com/rvm/rvm/stable/config/known'.freeze
29+
RVM_KNOWN_RUBIES_URL = 'https://raw.githubusercontent.com/rvm/rvm/master/config/known'.freeze
3030
MIN_RUBY_VERSION = [2, 4].freeze
3131

3232
option :paths,

lib/sensu-plugins-ruby/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
module SensuPluginsRuby
44
module Version
55
MAJOR = 0
6-
MINOR = 1
7-
PATCH = 3
6+
MINOR = 2
7+
PATCH = 0
88

99
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
1010
end

0 commit comments

Comments
 (0)