From 1653c8b88f4fe3f7c3844352bc0ef27814403ee0 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Thu, 3 May 2018 01:06:54 -0700 Subject: [PATCH] prep for 1.4.6 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 3a44ca1..c026ab7 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.6] - 2018-05-03 ### Fixed - version number check for build strings such as `10.3 (Ubuntu 10.3-1.pgdg16.04+1)` @@ -143,7 +145,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.5...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.6...HEAD +[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 [1.4.4]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.3...1.4.4 [1.4.3]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.2...1.4.3 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index bf90908..9576bae 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 = 5 + PATCH = 6 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end