Skip to content

Commit

Permalink
release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cwjohnston committed Jun 21, 2016
1 parent e3db450 commit a0df137
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)

## [Unreleased]

## [1.0.0] - 2016-06-21
### Changed
- check-puppet-last-run.rb: Added a formatter method to display time in a more human friendly format. (d m s) ago
- check-puppet-last-run.rb: if the agent is disabled via lock file, display reason (if available)
- Loosened dependency on sensu-plugin from `= 1.2.0` to `~> 1.2.0`
- Updated Rubocop to 0.40, applied auto-correct
- Added a check for errors in the puppet run
- check-puppet-last-run.rb: now returns critical when errors are found in the puppet run

### Removed
- Remove Ruby 1.9.3 support; add Ruby 2.2.0 and 2.3.0 support to test matrix.
Expand All @@ -22,5 +24,6 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/0.0.2...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/1.0.0...HEAD
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/0.0.2...1.0.0
[0.0.2]: https://github.com/sensu-plugins/sensu-plugins-puppet/compare/0.0.1...0.0.2
4 changes: 2 additions & 2 deletions lib/sensu-plugins-puppet/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
module SensuPluginsPuppet
# This defines the version of the gem
module Version
MAJOR = 0
MAJOR = 1
MINOR = 0
PATCH = 2
PATCH = 0

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

0 comments on commit a0df137

Please sign in to comment.