From ec52f306b1cdd2b4db8c68bfc20d56441df13a7a Mon Sep 17 00:00:00 2001 From: Cameron Johnston Date: Mon, 20 Jun 2016 09:08:08 -0600 Subject: [PATCH] release version 1.1.2 --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-docker/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43ee84f..7f97697 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.1.2] - 2016-06-20 ### Changed - dependencies: use sensu-plugin ~> 1.2.0, docker-api = 1.21.0 @@ -56,7 +58,8 @@ changes some options. Review your check commands before deploying this version. ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/1.1.1...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/1.1.2...HEAD +[1.1.2]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/1.1.1...1.1.2 [1.1.1]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/1.1.0...1.1.1 [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-docker/compare/0.0.4...1.0.0 diff --git a/lib/sensu-plugins-docker/version.rb b/lib/sensu-plugins-docker/version.rb index d2c7cef..267248e 100644 --- a/lib/sensu-plugins-docker/version.rb +++ b/lib/sensu-plugins-docker/version.rb @@ -2,7 +2,7 @@ module SensuPluginsDocker module Version MAJOR = 1 MINOR = 1 - PATCH = 1 + PATCH = 2 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end