Skip to content

Commit d2497f2

Browse files
committed
prep for 2.3.0 release
1 parent b57ae5e commit d2497f2

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).
55

66
## [Unreleased]
7+
8+
## [2.3.0] - 2018-12-08
79
### Added
8-
- metric-postgres-statsdb.rb: Add --all-databases option.
10+
- metric-postgres-statsdb.rb: Add --all-databases option. (@cyrilgdn)
911

1012
## [2.2.2] - 2018-10-27
1113
### Fixed
@@ -168,7 +170,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
168170
### Added
169171
- initial release
170172

171-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.2...HEAD
173+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.3.0...HEAD
174+
[2.3.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.2...2.3.0
172175
[2.2.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.1...2.2.2
173176
[2.2.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.2.0...2.2.1
174177
[2.2.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.1.0...2.2.0

bin/metric-postgres-statsdb.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class PostgresStatsDBMetrics < Sensu::Plugin::Metric::CLI::Graphite
6868
default: 'postgres'
6969

7070
option :all_databases,
71-
description: 'Get stats for all the databases instead of only the one we are connected on.',
71+
description: 'Get stats for all available databases',
7272
short: '-a',
7373
long: '--all-databases',
7474
boolean: true,

lib/sensu-plugins-postgres/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module SensuPluginsPostgres
22
module Version
33
MAJOR = 2
4-
MINOR = 2
5-
PATCH = 2
4+
MINOR = 3
5+
PATCH = 0
66

77
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
88
end

0 commit comments

Comments
 (0)