From eb3c5a11b9a209b33b0467bb6b517338b550010e Mon Sep 17 00:00:00 2001 From: Eric Heydrick Date: Tue, 17 Jan 2017 20:16:39 -0800 Subject: [PATCH] prep for 1.0.0 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-openldap/version.rb | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d9bd1d..6e744b1 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.0.0] - 2017-01-17 ### Added - check-syncrepl.rb: Add `--ca-certificate`, `--certificate` and `--encryption` options (@moriyoshi) - Ruby 2.3.0 support (@eheydrick) @@ -26,6 +28,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/0.0.3...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/1.0.0...HEAD +[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/0.0.3...1.0.0 [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/0.0.1...0.0.2 diff --git a/lib/sensu-plugins-openldap/version.rb b/lib/sensu-plugins-openldap/version.rb index d1a8c31..24e38f6 100644 --- a/lib/sensu-plugins-openldap/version.rb +++ b/lib/sensu-plugins-openldap/version.rb @@ -1,8 +1,8 @@ module SensuPluginsOpenldap module Version - MAJOR = 0 + MAJOR = 1 MINOR = 0 - PATCH = 3 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end