diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b75fc..e9e15b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ -#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/) ## [Unreleased] + +## [1.4.0] - 2017-06-20 ### Added - `check-ssl-anchor.rb`: Add check for a specific root certificate signature. (@pgporada) - `check-ssl-anchor_spec.rb`: Tests for the `check-ssl-anchor.rb` script (@pgporada) @@ -76,7 +78,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.4.0...HEAD +[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.1...1.4.0 [1.3.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.1.0...1.2.0 diff --git a/lib/sensu-plugins-ssl/version.rb b/lib/sensu-plugins-ssl/version.rb index 764ea97..3c32007 100644 --- a/lib/sensu-plugins-ssl/version.rb +++ b/lib/sensu-plugins-ssl/version.rb @@ -1,8 +1,8 @@ module SensuPluginsSSL module Version MAJOR = 1 - MINOR = 3 - PATCH = 1 + MINOR = 4 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end