Skip to content

Commit 5f6d290

Browse files
committed
prep for 3.0.1 release
1 parent 8481379 commit 5f6d290

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
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 at [here ](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)
88

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

1111
- [ ] Binstubs are created if needed
1212

1313
- [ ] RuboCop passes
1414

15-
- [ ] Existing tests pass
15+
- [ ] Existing tests pass
1616

1717
#### New Plugins
1818

@@ -25,4 +25,3 @@
2525
#### Purpose
2626

2727
#### Known Compatibility Issues
28-

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
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]
77

8+
### Fixed
9+
- check-kube-pods-running.rb no longer throws an exception when there are no 3 conditions in the status information. Issue #39 (@AgarFu)
10+
811
## [3.0.0] - 2017-09-12
912
### Breaking Change
1013
- check-kube-nodes-ready.rb no longer triggers an alert if an unschedulable node becomes NotReady (@tg90nor)
@@ -65,7 +68,8 @@ pending pods, the restart count portion has been split into it's own check, `che
6568
### Added
6669
- initial release
6770

68-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/3.0.0...HEAD
71+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/3.0.1...HEAD
72+
[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/3.0.0...3.0.0.1
6973
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/2.0.0...3.0.0
7074
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/1.1.0...2.0.0
7175
[1.1.0]: https://github.com/sensu-plugins/sensu-plugins-kubernetes/compare/1.0.0...1.1.0

lib/sensu-plugins-kubernetes/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module SensuPluginsKubernetes
22
module Version
33
MAJOR = 3
44
MINOR = 0
5-
PATCH = 0
5+
PATCH = 1
66

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

0 commit comments

Comments
 (0)