Skip to content

Commit

Permalink
fix and release 3.0.1 caused by #61
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Mar 17, 2018
1 parent 5f472c6 commit c3e7ded
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins

## [Unreleased]

### Fixed
- check-process.rb: fixed an issue introduced in #61 (@majormoses)

## [3.0.0] - 2018-03-17
### Security
- updated rubocop dependency to `~> 0.51.0` per: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8418. (@majormoses)
Expand Down Expand Up @@ -170,7 +173,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
- built against 1.9.3, 2.0, 2.1
- cryptographically signed

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.0...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.1...HEAD
[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/3.0.0...3.0.1
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.7.0...3.0.0
[2.7.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.6.0...2.7.0
[2.6.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.5.0...2.6.0
Expand Down
2 changes: 1 addition & 1 deletion bin/check-process.rb
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def line_to_hash(line, *cols)
#
def on_cygwin?
# #YELLOW
`ps -W 2>&1`; $CHILD_STATUS.zero? # rubocop:disable Semicolon
`ps -W 2>&1`; $CHILD_STATUS.exitstatus.zero? # rubocop:disable Semicolon
end

# Acquire all the proceeses on a system for further analysis
Expand Down
2 changes: 1 addition & 1 deletion lib/sensu-plugins-process-checks/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module SensuPluginsProcessChecks
module Version
MAJOR = 3
MINOR = 0
PATCH = 0
PATCH = 1

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

0 comments on commit c3e7ded

Please sign in to comment.