From fa05ada0686caaf53c462c075b109e19b2a0a4fc Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Mon, 6 Nov 2017 21:34:09 -0800 Subject: [PATCH] prep for 1.4.3 release --- CHANGELOG.md | 5 ++++- lib/sensu-plugins-postgres/version.rb | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 507f23d..40e1fff 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 [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md). ## [Unreleased] + +## [1.4.3] - 2017-11-06 ### Fixed - check-postgres-replication.rb: maintains backwards compatibility with <= 9.6 and adds compatibility for >= 10 @@ -124,7 +126,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/1.4.2...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.3...HEAD +[1.4.3]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.2...1.4.3 [1.4.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.1...1.4.2 [1.4.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.0...1.4.1 [1.4.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.3.0...1.4.0 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index f88bea6..8b2e1c7 100644 --- a/lib/sensu-plugins-postgres/version.rb +++ b/lib/sensu-plugins-postgres/version.rb @@ -2,7 +2,7 @@ module SensuPluginsPostgres module Version MAJOR = 1 MINOR = 4 - PATCH = 2 + PATCH = 3 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end