Skip to content

Commit

Permalink
prep for 2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed Nov 20, 2017
1 parent ea393cd commit 8438b48
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

#### General

- [ ] Update Changelog following the conventions laid out on [Keep A Changelog](http://keepachangelog.com/)
- [ ] Update Changelog following the conventions laid out [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)

- [ ] Update README with any necessary configuration snippets

- [ ] Binstubs are created if needed

- [ ] RuboCop passes

- [ ] Existing tests pass
- [ ] Existing tests pass

#### New Plugins

Expand All @@ -24,5 +24,4 @@

#### Purpose

#### Known Compatablity Issues

#### Known Compatibility Issues
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md)

## [Unreleased]

## [2.2.0] - 2017-11-19
### Changed
- check-mysql-alive.rb: Add support for custom section in inifile. (@oba11)
- check-mysql-connections.rb: Add support for custom section in inifile. (@oba11)
Expand All @@ -18,6 +20,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
- metrics-mysql-query-result-count.rb: Add support for custom section in inifile. (@oba11)
- metrics-mysql-raw.rb: Add support for custom section in inifile. (@oba11)
- README.md: update useage to have an example using the custom ini section (@majormoses)
- update changelog guidelines location (@majormoses)

### Fixed
- misc spelling and whitespace (@majormoses)

## [2.1.2] - 2017-10-04
### Changed
Expand Down Expand Up @@ -104,7 +110,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.1.1...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.2.0...HEAD
[2.2.0]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.1.1...2.2.0
[2.1.2]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.1.1...2.1.2
[2.1.1]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.1.0...2.1.1
[2.1.0]: https://github.com/sensu-plugins/sensu-plugins-mysql/compare/2.0.0...2.1.0
Expand Down
4 changes: 2 additions & 2 deletions lib/sensu-plugins-mysql/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module SensuPluginsMySql
module Version
MAJOR = 2
MINOR = 1
PATCH = 2
MINOR = 2
PATCH = 0

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down

0 comments on commit 8438b48

Please sign in to comment.