File tree 2 files changed +8
-3
lines changed
lib/sensu-plugins-postgres
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ 4.1.0] - 2020-06-04
9
+ ### Added
10
+ - new ` metric-postgres-vaccum.rb ` metric gathering script for postgres vacuum process (@phumpal )
11
+
8
12
## [ 4.0.2] - 2020-06-02
9
13
- Fixed ` # frozen_string_literal: true ` does not play nicely with mixlib-cli.
10
14
@@ -213,7 +217,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
213
217
### Added
214
218
- initial release
215
219
216
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.2...HEAD
220
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.1.0...HEAD
221
+ [ 4.1.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.2...4.1.0
217
222
[ 4.0.2 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...4.0.2
218
223
[ 4.0.1 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...4.0.1
219
224
[ 4.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/3.0.0...4.0.0
Original file line number Diff line number Diff line change 3
3
module SensuPluginsPostgres
4
4
module Version
5
5
MAJOR = 4
6
- MINOR = 0
7
- PATCH = 2
6
+ MINOR = 1
7
+ PATCH = 0
8
8
9
9
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
10
10
end
You can’t perform that action at this time.
0 commit comments