From 20651ea857685d220dba5dda021d1b9664534c33 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Sun, 2 Jul 2017 11:12:44 -0700 Subject: [PATCH] add ruby 2.4 testing --- .github/PULL_REQUEST_TEMPLATE.md | 5 ++--- .travis.yml | 2 ++ CHANGELOG.md | 6 ++++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ff8d2e9..8821e85 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,7 +12,7 @@ - [ ] RuboCop passes -- [ ] Existing tests pass +- [ ] Existing tests pass #### New Plugins @@ -24,5 +24,4 @@ #### Purpose -#### Known Compatablity Issues - +#### Known Compatibility Issues diff --git a/.travis.yml b/.travis.yml index aff3648..6077e3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ rvm: - 2.1 - 2.2 - 2.3.0 +- 2.4.1 notifications: email: recipients: @@ -30,4 +31,5 @@ deploy: rvm: 2.1 rvm: 2.2 rvm: 2.3.0 + rvm: 2.4.1 repo: sensu-plugins/sensu-plugins-pagerduty diff --git a/CHANGELOG.md b/CHANGELOG.md index bdfcbc3..643d01f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/) ## [Unreleased] +### Added +- ruby 2.4 testing (@majormoses) + +### Fixed +- PR template typo + ## [3.0.0] - 2017-06-01 ### Breaking Change - changed the precedence of pager_team evaluation from `client -> check -> json_config` to `check -> client -> json_config` (@guru-beach)