File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
lib/sensu-plugins-postgres Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 4
4
5
5
#### General
6
6
7
- - [ ] Update Changelog following the conventions laid out on [ Keep A Changelog ] ( http ://keepachangelog .com/)
7
+ - [ ] Update Changelog following the conventions laid out [ here ] ( https ://github .com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md )
8
8
9
9
- [ ] Update README with any necessary configuration snippets
10
10
24
24
25
25
#### Purpose
26
26
27
- #### Known Compatability Issues
28
-
27
+ #### Known Compatibility Issues
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
3
3
4
- This CHANGELOG follows the format listed at [ Keep A Changelog ] ( http ://keepachangelog .com/)
4
+ This CHANGELOG follows the format listed [ here ] ( https ://github .com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md ) .
5
5
6
6
## [ Unreleased]
7
+
8
+ ## [ 1.4.1] - 2017-09-26
7
9
### Fixed
8
10
- metrics-postgres-query.rb: Add a nil check to avoid failure when the query result is empty (@eheydrick )
11
+ - PR template spelling (@majormoses )
12
+
13
+ ### Changed
14
+ - updated CHANGELOG guidelines location (@majormoses )
9
15
10
16
## [ 1.4.0] - 2017-08-04
11
17
### Added
@@ -112,7 +118,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
112
118
### Added
113
119
- initial release
114
120
115
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.0...HEAD
121
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.1...HEAD
122
+ [ 1.4.1 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.4.0...1.4.1
116
123
[ 1.4.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.3.0...1.4.0
117
124
[ 1.3.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.2.0...1.3.0
118
125
[ 1.2.0 ] : https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.1.2...1.2.0
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module SensuPluginsPostgres
2
2
module Version
3
3
MAJOR = 1
4
4
MINOR = 4
5
- PATCH = 0
5
+ PATCH = 1
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments