Skip to content

Commit 6e723ab

Browse files
author
Todd Campbell
committed
updated travis and rolled to 3.0.1
Signed-off-by: Todd Campbell <todd@sensu.io>
1 parent 8bbd23b commit 6e723ab

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

.travis.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
sudo: true
2-
service: docker
31
language: ruby
2+
services:
3+
- docker
44
cache:
55
- bundler
6-
before_install:
7-
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
86
install:
97
- bundle install
108
rvm:
@@ -22,6 +20,13 @@ script:
2220
before_deploy:
2321
- bash -c "[ ! -d bonsai/ ] && git clone https://github.com/sensu/sensu-go-bonsai-asset.git bonsai || echo 'bonsai/ exists, skipping git clone'"
2422
deploy:
23+
- provider: script
24+
script: bonsai/ruby-runtime/travis-build-bonsai-assets.sh sensu-plugins-ssl
25+
skip_cleanup: true
26+
on:
27+
tags: true
28+
all_branches: true
29+
rvm: 2.4.1
2530
- provider: rubygems
2631
api_key:
2732
secure: Kr0fckXoukenIVyWMFVYAi+llLNNKRtfnZatnGDgqQON+vRXuuLGnta2TyBEhmPdiRU8nax5VL3K5uNSkxWmPi7Vtzizz453KShtnFGXuq73H37WIvcJ4bLcvz5K/1RWNEcXMN7/6hgSeDBUzcliFyph4p00WhdhqgFttf0UI/Y=
@@ -31,10 +36,3 @@ deploy:
3136
all_branches: true
3237
rvm: 2.4.1
3338
repo: sensu-plugins/sensu-plugins-ssl
34-
- provider: script
35-
script: bonsai/ruby-runtime/travis-build-bonsai-assets.sh sensu-plugins-ssl
36-
skip_cleanup: true
37-
on:
38-
tags: true
39-
all_branches: true
40-
rvm: 2.4.1

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
55

66
## [Unreleased]
77

8+
## [3.0.1] - 2020-08-27
9+
### Changed
10+
- Modified .travis.yml to re-order deploy steps
11+
812
## [3.0.0] - 2020-08-27
913
### Breaking Changes
1014
- 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
129133
### Added
130134
- initial release
131135

132-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.0...HEAD
136+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.1...HEAD
137+
[3.0.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/3.0.0...3.0.1
133138
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.1...3.0.0
134139
[2.0.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/2.0.0...2.0.1
135140
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/1.5.0...2.0.0

lib/sensu-plugins-ssl/version.rb

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

99
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
1010
end

0 commit comments

Comments
 (0)