From 0d544e935163a8556ee32ccf3c5503ad91d4579d Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 4 Aug 2017 10:45:40 -0700 Subject: [PATCH] prep for 1.4.0 release --- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-postgres/version.rb | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b87f89..91a937a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## [Unreleased] +## [1.4.0] - 2017-08-04 +### Added +- all checks now support using the pgpass file and is backwards compatible with the previous versions (@ahes) + ## [1.3.0] - 2017-07-25 ### Fixed - Take into account reserved superuser connections in check-postgres-connections.rb (@Evesy) @@ -106,7 +110,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.3.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.0...HEAD +[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.3.0...1.4.0 [1.3.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.2.0...1.3.0 [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.1.2...1.2.0 [1.1.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.1.1...1.1.2 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index 60ae3dd..1ba5593 100644 --- a/lib/sensu-plugins-postgres/version.rb +++ b/lib/sensu-plugins-postgres/version.rb @@ -1,7 +1,7 @@ module SensuPluginsPostgres module Version MAJOR = 1 - MINOR = 3 + MINOR = 4 PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')