Skip to content

Commit ff6c91a

Browse files
committed
prep for 3.1.0 release
1 parent 2f5d928 commit ff6c91a

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 4 deletions
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 [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

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

2525
#### Purpose
2626

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

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
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+
## [3.1.0] - 2018-02-28
79
### 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)
917

1018
## [3.0.0] - 2017-12-04
1119
### Breaking Change
@@ -89,7 +97,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
8997
### Added
9098
- initial release
9199

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
93102
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...3.0.0
94103
[2.3.0]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.1...2.3.0
95104
[2.2.1]: https://github.com/sensu-plugins/sensu-plugins-graphite/compare/2.2.0...2.2.1

lib/sensu-plugins-graphite/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module SensuPluginsGraphite
22
module Version
33
MAJOR = 3
4-
MINOR = 0
4+
MINOR = 1
55
PATCH = 0
66

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

0 commit comments

Comments
 (0)