From 6653a513791b0bc4bc7a7e8047a2baca4efcc058 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Tue, 16 Oct 2018 19:29:47 -0700 Subject: [PATCH] prep for 2.1.0 release --- CHANGELOG.md | 9 ++++++--- lib/sensu-plugins-postgres/version.rb | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebe948d..32a3b22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md). ## [Unreleased] + +## [2.1.0] - 2018-10-16 ### Added -- Moves check_vsn and compute_lag to library method +- Moves check_vsn and compute_lag to library method (@phumpal) ## [2.0.0] - 2018-10-15 ### Breaking Changes -- Remove unsupported Rubies: `< 2.3.0` +- Remove unsupported Rubies: `< 2.3.0` (@phumpal) ## [1.4.6] - 2018-05-03 ### Fixed @@ -151,7 +153,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.1.0...HEAD +[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.6...2.0.0 [1.4.6]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.5...1.4.6 [1.4.5]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.4...1.4.5 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index 13e7b0c..2dc1d39 100644 --- a/lib/sensu-plugins-postgres/version.rb +++ b/lib/sensu-plugins-postgres/version.rb @@ -1,7 +1,7 @@ module SensuPluginsPostgres module Version MAJOR = 2 - MINOR = 0 + MINOR = 1 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')