Skip to content

Commit

Permalink
prep for 4.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Mar 5, 2019
1 parent 13f7855 commit 102816b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ https://mathias-kettner.de/checkmk_filesystems.html
### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.0...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.1...HEAD
[4.0.1]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.1.1...4.0.0
[3.1.1]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.1.0...3.1.1
[3.1.0]: https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.0.1...3.1.0
Expand Down
2 changes: 1 addition & 1 deletion bin/check-smart-status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def find_devices
# Return parameter value if it's defined
if config[:devices] != 'all'
config[:devices].split(',').each do |dev|
jconfig = @hardware.find { |h1| h1[:path] == dev }
jconfig = @hardware.find { |d| d[:path] == dev }

if jconfig.nil?
override = nil
Expand Down
2 changes: 1 addition & 1 deletion lib/sensu-plugins-disk-checks/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module SensuPluginsDiskChecks
module Version
MAJOR = 4
MINOR = 0
PATCH = 0
PATCH = 1

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down

0 comments on commit 102816b

Please sign in to comment.