diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5a8e9..acb4fdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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.1] - 2017-05-17 ### Changed - Replace `datadog` with `dogapi` gem as that's the current dependency for this plugin (@eheydrick) @@ -29,7 +31,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Changed - removed cruft from /lib -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/1.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/1.0.1...HEAD +[1.0.1]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/0.0.4...1.0.0 [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/0.0.3...0.0.4 [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-datadog/compare/0.0.2...0.0.3 diff --git a/lib/sensu-plugins-datadog/version.rb b/lib/sensu-plugins-datadog/version.rb index f5c8eed..d5ed784 100644 --- a/lib/sensu-plugins-datadog/version.rb +++ b/lib/sensu-plugins-datadog/version.rb @@ -2,7 +2,7 @@ module SensuPluginsDatadog module Version MAJOR = 1 MINOR = 0 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end