diff --git a/CHANGELOG.md b/CHANGELOG.md index fe111b7..1c31a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## Unreleased][unreleased] +## [0.0.2] - 2015-06-03 + +### Fixed +- added binstubs + +### Changed +- removed cruft from /lib + ## 0.0.1 - 2015-05-20 ### Added diff --git a/lib/sensu-plugins-raid-checks.rb b/lib/sensu-plugins-raid-checks.rb index 5db67c5..ab6a272 100644 --- a/lib/sensu-plugins-raid-checks.rb +++ b/lib/sensu-plugins-raid-checks.rb @@ -1,14 +1 @@ require 'sensu-plugins-raid-checks/version' - -# Load the defaults - -# -# Default class -# -module SensuPluginsRaidChecks - class << self - end - - class << self - end -end diff --git a/lib/sensu-plugins-raid-checks/version.rb b/lib/sensu-plugins-raid-checks/version.rb index b01f904..9e4e8a6 100644 --- a/lib/sensu-plugins-raid-checks/version.rb +++ b/lib/sensu-plugins-raid-checks/version.rb @@ -1,28 +1,9 @@ -require 'json' - -# encoding: utf-8 module SensuPluginsRaidChecks - # This defines the version of the gem module Version MAJOR = 0 MINOR = 0 - PATCH = 1 + PATCH = 2 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') - - NAME = 'sensu-plugins-raid-checks' - BANNER = "#{NAME} v%s" - - module_function - - def version - format(BANNER, VER_STRING) - end - - def json_version - { - 'version' => VER_STRING - }.to_json - end end end