From c305519ed2d152a28f16d1ca04db6be9dd8bf197 Mon Sep 17 00:00:00 2001 From: Eric Heydrick Date: Mon, 6 Mar 2017 00:19:46 -0800 Subject: [PATCH] prep for 1.2.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-mongodb/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b035784..99430a8 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.2.0] - 2017-03-06 ### Fixed - `check-mongodb.py`: Set read preference for pymongo 2.2+ to fix 'General MongoDB Error: can't set attribute' (@boutetnico) - `check-mongodb.py`: Fix mongo replication lag percent check showing password in plain text (@furbiesandbeans) @@ -87,7 +89,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.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.2.0...HEAD +[1.2.0]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/0.0.8...1.0.0 [0.0.8]: https://github.com/sensu-plugins/sensu-plugins-mongodb/compare/0.0.7...0.0.8 diff --git a/lib/sensu-plugins-mongodb/version.rb b/lib/sensu-plugins-mongodb/version.rb index ae0cba9..ab205dc 100644 --- a/lib/sensu-plugins-mongodb/version.rb +++ b/lib/sensu-plugins-mongodb/version.rb @@ -1,7 +1,7 @@ module SensuPluginsMongoDB module Version MAJOR = 1 - MINOR = 1 + MINOR = 2 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')