diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e4c3c2b..1468772 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ #### General -- [ ] Update Changelog following the conventions laid out on [Keep A Changelog](http://keepachangelog.com/) +- [ ] Update Changelog following the conventions laid out [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) - [ ] Update README with any necessary configuration snippets @@ -12,7 +12,7 @@ - [ ] RuboCop passes -- [ ] Existing tests pass +- [ ] Existing tests pass #### New Plugins @@ -25,4 +25,3 @@ #### Purpose #### Known Compatibility Issues - diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bee365..c818b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +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/) +This CHANGELOG follows the format located [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md) ## [Unreleased] +## [1.4.1] - 2017-09-23 +### Fixed +- Support for database size metrics (@fandrews) + +### Changed +- updated changelog guidelines location (@majormoses) + ## [1.4.0] - 2017-09-05 ### Added - Support for returning replicaset state metrics (@naemono) - Tests covering returning replicaset state metrics (@naemono) - Ruby 2.4.1 testing -### Fixed -- Support for database size metrics (@fandrews) - ## [1.3.0] - 2017-05-22 ### Added - Support for database size metrics (@naemono) @@ -110,7 +114,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.4.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.4.1...HEAD +[1.4.1]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.4.0...1.4.1 [1.4.0]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.3.0...1.4.0 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.2.1...1.3.0 [1.2.1]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.2.0...1.2.1 diff --git a/lib/sensu-plugins-mongodb/version.rb b/lib/sensu-plugins-mongodb/version.rb index 352daf7..b38c77d 100644 --- a/lib/sensu-plugins-mongodb/version.rb +++ b/lib/sensu-plugins-mongodb/version.rb @@ -2,7 +2,7 @@ module SensuPluginsMongoDB module Version MAJOR = 1 MINOR = 4 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end