File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed
lib/sensu-plugins-graphite Expand file tree Collapse file tree 3 files changed +16
-8
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
11
11
- [ ] Binstubs are created if needed
12
12
13
13
- [ ] RuboCop passes
14
14
15
- - [ ] Existing tests pass
15
+ - [ ] Existing tests pass
16
16
17
17
#### New Plugins
18
18
24
24
25
25
#### Purpose
26
26
27
- #### Known Compatablity 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
+ ## [ 3.1.0] - 2018-02-28
7
9
### Added
8
- - Added -t flag to handler-graphite-event.rb to support post 1.0 versions of graphite which require tags sent as arrays.
10
+ - Added -t flag to handler-graphite-event.rb to support post 1.0 versions of graphite which require tags sent as arrays. (@jwatroba )
11
+
12
+ ### Changed
13
+ - updated Changelog guidelines location (@majormoses )
14
+
15
+ ### Fixed
16
+ - minor typos in PR template (@majormoses )
9
17
10
18
## [ 3.0.0] - 2017-12-04
11
19
### Breaking Change
@@ -89,7 +97,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
89
97
### Added
90
98
- initial release
91
99
92
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/3.0.0...HEAD
100
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/3.1.0...HEAD
101
+ [ 3.1.0 ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/3.0.0...3.1.0
93
102
[ 3.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...3.0.0
94
103
[ 2.3.0 ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...2.3.0
95
104
[ 2.2.1 ] : https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.0...2.2.1
Original file line number Diff line number Diff line change 1
1
module SensuPluginsGraphite
2
2
module Version
3
3
MAJOR = 3
4
- MINOR = 0
4
+ MINOR = 1
5
5
PATCH = 0
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
You can’t perform that action at this time.
0 commit comments