From d6e8cea5446c19e3f7138b21be650a9705f79593 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 4 Oct 2019 16:23:10 -0700 Subject: [PATCH] prep for 2.4.0 release --- CHANGELOG.md | 6 +++++- lib/sensu-plugins-postgres/version.rb | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6497c01..c9ef4e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ 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.4.0] - 2019-10-04 +### Added - Support comments in pgpass file. Keeps previous behavior and adds support for ignoring leading comments (@phumpal) ## [2.3.2] - 2019-03-12 @@ -179,7 +182,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.3.2...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.4.0...HEAD +[2.4.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.2...2.4.0 [2.3.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.1...2.3.2 [2.3.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.0...2.3.1 [2.3.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.2...2.3.0 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index 295f34a..c3b6fa2 100644 --- a/lib/sensu-plugins-postgres/version.rb +++ b/lib/sensu-plugins-postgres/version.rb @@ -1,8 +1,8 @@ module SensuPluginsPostgres module Version MAJOR = 2 - MINOR = 3 - PATCH = 2 + MINOR = 4 + PATCH = 0 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end