From 6e723ab7a9637f48d26f9e8eb92fac482361fb1d Mon Sep 17 00:00:00 2001 From: Todd Campbell Date: Thu, 27 Aug 2020 15:00:50 -0400 Subject: [PATCH] updated travis and rolled to 3.0.1 Signed-off-by: Todd Campbell --- .travis.yml | 20 +++++++++----------- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-ssl/version.rb | 2 +- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 935f29b..ec71f13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,8 @@ -sudo: true -service: docker language: ruby +services: +- docker cache: - bundler -before_install: - - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) install: - bundle install rvm: @@ -22,6 +20,13 @@ script: before_deploy: - bash -c "[ ! -d bonsai/ ] && git clone https://github.com/sensu/sensu-go-bonsai-asset.git bonsai || echo 'bonsai/ exists, skipping git clone'" deploy: +- provider: script + script: bonsai/ruby-runtime/travis-build-bonsai-assets.sh sensu-plugins-ssl + skip_cleanup: true + on: + tags: true + all_branches: true + rvm: 2.4.1 - provider: rubygems api_key: secure: Kr0fckXoukenIVyWMFVYAi+llLNNKRtfnZatnGDgqQON+vRXuuLGnta2TyBEhmPdiRU8nax5VL3K5uNSkxWmPi7Vtzizz453KShtnFGXuq73H37WIvcJ4bLcvz5K/1RWNEcXMN7/6hgSeDBUzcliFyph4p00WhdhqgFttf0UI/Y= @@ -31,10 +36,3 @@ deploy: all_branches: true rvm: 2.4.1 repo: sensu-plugins/sensu-plugins-ssl -- provider: script - script: bonsai/ruby-runtime/travis-build-bonsai-assets.sh sensu-plugins-ssl - skip_cleanup: true - on: - tags: true - all_branches: true - rvm: 2.4.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bf5199..eee0fc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ## [Unreleased] +## [3.0.1] - 2020-08-27 +### Changed +- Modified .travis.yml to re-order deploy steps + ## [3.0.0] - 2020-08-27 ### Breaking Changes - Bump `sensu-plugin` dependency from `~> 1.2` to `~> 4.0` you can read the changelog entries for [4.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#400---2018-02-17), [3.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#300---2018-12-04), and [2.0](https://github.com/sensu-plugins/sensu-plugin/blob/master/CHANGELOG.md#v200---2017-03-29) @@ -129,7 +133,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.1...HEAD +[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.0...3.0.1 [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.1...3.0.0 [2.0.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...2.0.0 diff --git a/lib/sensu-plugins-ssl/version.rb b/lib/sensu-plugins-ssl/version.rb index dc3f137..2d718f4 100644 --- a/lib/sensu-plugins-ssl/version.rb +++ b/lib/sensu-plugins-ssl/version.rb @@ -4,7 +4,7 @@ module SensuPluginsSSL module Version MAJOR = 3 MINOR = 0 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end