From 277645b522f5dda9d3794a16e4fa8781b064a92a Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 20 Oct 2017 08:34:28 -0700 Subject: [PATCH] prep for 2.1.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-mesos/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c5e431..5923dbe 100755 --- 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] + +## [2.1.0] - 2017-10-20 ### Changed - check-marathon-task.rb: if instances are not defined, plugin will check number of configured instances in Marathon. Also removed Net::HTTP in favour of Restclient::Resource @@ -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-mesos/compare/2.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.1.0...HEAD +[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/1.1.0...2.0.0 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-mesos/compare/0.1.1...1.0.0 diff --git a/lib/sensu-plugins-mesos/version.rb b/lib/sensu-plugins-mesos/version.rb index df9c29c..7c56acf 100755 --- a/lib/sensu-plugins-mesos/version.rb +++ b/lib/sensu-plugins-mesos/version.rb @@ -1,7 +1,7 @@ module SensuPluginsMesos module Version MAJOR = 2 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')