Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jones committed Jun 4, 2015
1 parent b824c53 commit 5c8d837
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang

## Unreleased][unreleased]

## [0.0.3] - 2015-06-04

### Added
- Merge PR #1
- If a grep of lspci returns nothing then don't check for software raid.

### Fixed
- Set the gemspec to only create binstubs for Ruby scripts

## [0.0.2] - 2015-06-03

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

### Added
- initial release

2 changes: 1 addition & 1 deletion lib/sensu-plugins-raid-checks/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module SensuPluginsRaidChecks
module Version
MAJOR = 0
MINOR = 0
PATCH = 2
PATCH = 3

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion sensu-plugins-raid-checks.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.date = Date.today.to_s
s.description = 'Sensu plugins for working with raid devices'
s.email = '<[email protected]>'
s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) }
s.executables = Dir.glob('bin/**/*.rb').map { |file| File.basename(file) }
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md)
s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-raid-checks'
s.license = 'MIT'
Expand Down

0 comments on commit 5c8d837

Please sign in to comment.