From 33394d71bca01e201be46940797d1b31592402a1 Mon Sep 17 00:00:00 2001 From: Eric Heydrick Date: Wed, 4 Jan 2017 12:48:03 -0800 Subject: [PATCH] prep for 1.0.1 release --- CHANGELOG.md | 7 +++++-- lib/sensu-plugins-postgres/version.rb | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cec0bbd..c960e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] + +## [1.0.1] - 2017-01-04 ### Fixed -- metrics-postgres-query.rb: Fix `count_tuples` option +- metrics-postgres-query.rb: Fix `count_tuples` option (#23) (@eheydrick) ## [1.0.0] - 2016-12-27 ### Fixed @@ -64,7 +66,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.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.0.1...HEAD +[1.0.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/0.1.1...1.0.0 [0.1.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/0.0.7...0.1.0 diff --git a/lib/sensu-plugins-postgres/version.rb b/lib/sensu-plugins-postgres/version.rb index caf01b1..3420095 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 = 0 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end