diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d55d67..fc7b754 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] + +## [3.0.0] - 2017-12-04 ### Breaking Change - bumped dependency of `sensu-plugin` to 2.x you can read about it [here](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29) @@ -85,7 +87,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/3.0.0...HEAD +[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...3.0.0 [2.3.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...2.3.0 [2.2.1]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.0...2.2.1 [2.2.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.1.0...2.2.0 diff --git a/lib/sensu-plugins-graphite/version.rb b/lib/sensu-plugins-graphite/version.rb index d0219b0..2112a7f 100644 --- a/lib/sensu-plugins-graphite/version.rb +++ b/lib/sensu-plugins-graphite/version.rb @@ -1,7 +1,7 @@ module SensuPluginsGraphite module Version - MAJOR = 2 - MINOR = 3 + MAJOR = 3 + MINOR = 0 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')