Skip to content

Commit c643728

Browse files
committed
prep for 1.4.1 release
1 parent 2b7516e commit c643728

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#### General
66

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)
88

99
- [ ] Update README with any necessary configuration snippets
1010

@@ -24,5 +24,4 @@
2424

2525
#### Purpose
2626

27-
#### Known Compatability Issues
28-
27+
#### Known Compatibility Issues

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Change Log
22
This project adheres to [Semantic Versioning](http://semver.org/).
33

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).
55

66
## [Unreleased]
7+
8+
## [1.4.1] - 2017-09-26
79
### Fixed
810
- 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)
915

1016
## [1.4.0] - 2017-08-04
1117
### Added
@@ -112,7 +118,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
112118
### Added
113119
- initial release
114120

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
116123
[1.4.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.3.0...1.4.0
117124
[1.3.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.2.0...1.3.0
118125
[1.2.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/1.1.2...1.2.0

lib/sensu-plugins-postgres/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module SensuPluginsPostgres
22
module Version
33
MAJOR = 1
44
MINOR = 4
5-
PATCH = 0
5+
PATCH = 1
66

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

0 commit comments

Comments
 (0)