Skip to content

Commit

Permalink
prep for 2.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Jul 18, 2017
1 parent 86b4726 commit 1b324ee
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
26 changes: 16 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
#Change Log
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)

### Added
- metric-processes-threads-count.rb: count processes by status (for Linux machines only)

## [Unreleased]

## [2.4.0] - 2017-07-18
### Added
- ruby 2.4 testing (@majormoses)
- metric-processes-threads-count.rb: count processes by status (for Linux machines only) (@alcasim)

### Changed
- PR template fixes (@majormoses)

### Fixed
- misc changelog fixup (@majormoses)
- fixed `rake check_binstubs` by requiging `English`

## [2.3.0] - 2017-05-29
### Changed
- metrics-per-process.py: Use memory_info() in psutil versions greater than 4.0.0, as memory_info_ex() was deprecated.
Expand Down Expand Up @@ -49,6 +54,9 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
- Updated Rubocop to 0.40, applied auto-correct
- Remove Ruby 1.9.3 support; add Ruby 2.3.0 support to test matrix

## [0.1.0] - 2015-08-11
### Added
- Add metrics-per-process.py plugin (require python psutil module)

## [0.0.6] - 2015-08-24
### Fixed
Expand All @@ -61,15 +69,11 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
### Changed
- rename process-uptime metrics.sh -> metrics-process-uptime.sh

## [0.1.0] - 2015-08-11
### Added
- Add metrics-per-process.py plugin (require python psutil module)

## [0.0.4] - 2015-07-14
### Changed
- updated sensu-plugin gem to 1.2.0

## [0.0.3] - [2015-07-13]
## [0.0.3] - 2015-07-13
### Fixed
- issue #9: variable type conversion to_i in check-process-restart

Expand All @@ -86,7 +90,7 @@ 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 stable release

Expand Down Expand Up @@ -135,7 +139,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
- built against 1.9.3, 2.0, 2.1
- cryptographically signed

[unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.3.0...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.3.0...HEAD
[2.4.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.3.0...
[2.3.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.2.0...2.3.0
[2.2.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.1.0...2.2.0
[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/2.0.0...2.1.0
Expand All @@ -146,3 +151,4 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
[0.0.4]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/0.0.1...0.0.2
[0.0.1]: https://github.com/sensu-plugins/sensu-plugins-process-checks/compare/4fd88a85f31d52c0f7145807365c911ea7f935c1...0.0.1
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'yard'
require 'yard/rake/yardoc_task'
require 'English'

args = [:spec, :make_bin_executable, :yard, :rubocop, :check_binstubs]

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
@@ -1,7 +1,7 @@
module SensuPluginsProcessChecks
module Version
MAJOR = 2
MINOR = 3
MINOR = 4
PATCH = 0

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

0 comments on commit 1b324ee

Please sign in to comment.