File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ require 'sensu-plugin/check/cli'
2626
2727# Sensu plugin for checking bundle audit status
2828class 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 ,
Original file line number Diff line number Diff line change 33module 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
You can’t perform that action at this time.
0 commit comments