From ecc6187ac72c527acff66f68242c0966d43819cb Mon Sep 17 00:00:00 2001 From: Cameron Johnston Date: Wed, 10 Aug 2016 12:11:34 -0600 Subject: [PATCH] release version 1.0.0 --- CHANGELOG.md | 9 +++++++-- lib/sensu-plugins-etcd/version.rb | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 968e916..ba50123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,12 @@ 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.0] - 2016-08-10 ### Changed - Removed Ruby 1.9 support +- Updated sensu-plugin dependency from `= 1.2.0` to `~> 1.3` + ### Added - Added full cluster health check option for check-etcd - Added healthy peer count check @@ -31,7 +35,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.1.0...HEAD -[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.0.3...0.0.4 +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/1.0.0...HEAD +[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.1.0...1.0.0 +[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.0.3...0.1.0 [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-etcd/compare/0.0.1...0.0.2 diff --git a/lib/sensu-plugins-etcd/version.rb b/lib/sensu-plugins-etcd/version.rb index 8d24fa2..d1e767a 100644 --- a/lib/sensu-plugins-etcd/version.rb +++ b/lib/sensu-plugins-etcd/version.rb @@ -1,8 +1,8 @@ module SensuPluginsEtcd module Version - MAJOR = 0 - MINOR = 1 - PATCH = 1 + MAJOR = 1 + MINOR = 0 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end