From 6a60ecd9df374207ea0486cb54933b6249658e36 Mon Sep 17 00:00:00 2001 From: Matt Jones Date: Mon, 13 Jul 2015 09:01:00 -0400 Subject: [PATCH] deploy --- CHANGELOG.md | 76 +++++++++++++-------- lib/sensu-plugins-process-checks/version.rb | 2 +- 2 files changed, 50 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a53b47d..7ece151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,16 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## Unreleased][unreleased] + +## [0.0.3] - [2015-07-13] ### Fixed +- issue #9: variable type conversion to_i in check-process-restart -- issue #9: variable type conversion to_i +### Changed +- updated documentation links in README and CONTRIBUTING +- removed unused rake tasks from Rakefile +- puts deps in alpha order in Rakefile +- puts deps in order in Gemspec ## [0.0.2] - 2015-06-03 @@ -17,43 +24,58 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Changed - removed cruft from /lib -## 0.0.1 - 2015-05-01 +## [0.0.1] - [2015-05-01] ### Added -- initial release +- initial stable release -#### 0.0.1.alpha.6 +## [0.0.1.alpha.6] -* add chef provisioner to Vagrantfile -* fix rubocop errors -* add metadata to gemspec +### Added +- add chef provisioner to Vagrantfile +- add metadata to gemspec -#### 0.0.1.alpha.5 +### Fixed +- fix rubocop errors -* add new check for process uptime metrics +## [0.0.1.alpha.5] -#### 0.0.1.alpha.4 +### Added +- add new check for process uptime metrics -* convert scrips to sys-proctable gem for platform independence +## [0.0.1.alpha.4] -#### 0.0.1-alpha.3 +### Changed +- convert scrips to sys-proctable gem for platform independence -* add proc-status-metrics -* change proc-status-metrics to process-status-metrics +## [0.0.1-alpha.3] -#### 0.0.1-alpha.2 +### Added +- add proc-status-metrics -* bump Vagrant to Chef 6.6 -* update LICENSE and gemspec authors -* update README -* add required Ruby version *>= 1.9.3* -* add test/spec_help.rb +### Changed +- change proc-status-metrics to process-status-metrics -#### 0.1.0-alpha.1 +## [0.0.1-alpha.2] -* baseline release identical to **sensu-community-plugins** repo -* changed *check-procs* to *check-process* to better reflect its use -* basic yard coverage -* pinned dependencies -* built against 1.9.3, 2.0, 2.1 -* cryptographically signed +### Changed +- bump Vagrant to Chef 6.6 +- update LICENSE and gemspec authors +- update README + +### Added +- add required Ruby version *>= 1.9.3* +- add test/spec_help.rb + +## [0.1.0-alpha.1] + +- baseline release identical to **sensu-community-plugins** repo + +### Changed +- changed *check-procs* to *check-process* to better reflect its use +- pinned dependencies + +### Added +- basic yard coverage +- built against 1.9.3, 2.0, 2.1 +- cryptographically signed diff --git a/lib/sensu-plugins-process-checks/version.rb b/lib/sensu-plugins-process-checks/version.rb index 361ab7d..cfdbe63 100644 --- a/lib/sensu-plugins-process-checks/version.rb +++ b/lib/sensu-plugins-process-checks/version.rb @@ -2,7 +2,7 @@ module SensuPluginsProcessChecks module Version MAJOR = 0 MINOR = 0 - PATCH = 2 + PATCH = 3 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end