Skip to content

Commit 5c8d837

Browse files
author
Matt Jones
committed
deploy
1 parent b824c53 commit 5c8d837

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
55

66
## Unreleased][unreleased]
77

8+
## [0.0.3] - 2015-06-04
9+
10+
### Added
11+
- Merge PR #1
12+
- If a grep of lspci returns nothing then don't check for software raid.
13+
14+
### Fixed
15+
- Set the gemspec to only create binstubs for Ruby scripts
16+
817
## [0.0.2] - 2015-06-03
918

1019
### Fixed
@@ -17,4 +26,3 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
1726

1827
### Added
1928
- initial release
20-

lib/sensu-plugins-raid-checks/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module SensuPluginsRaidChecks
22
module Version
33
MAJOR = 0
44
MINOR = 0
5-
PATCH = 2
5+
PATCH = 3
66

77
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
88
end

sensu-plugins-raid-checks.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.date = Date.today.to_s
1818
s.description = 'Sensu plugins for working with raid devices'
1919
s.email = '<sensu-users@googlegroups.com>'
20-
s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) }
20+
s.executables = Dir.glob('bin/**/*.rb').map { |file| File.basename(file) }
2121
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md)
2222
s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-raid-checks'
2323
s.license = 'MIT'

0 commit comments

Comments
 (0)