From b27eac08e05f87c966627b02dd11c41f71009c23 Mon Sep 17 00:00:00 2001 From: Todd Campbell Date: Wed, 5 Aug 2020 13:14:20 -0400 Subject: [PATCH] fix travis and roll version Signed-off-by: Todd Campbell --- .travis.yml | 2 +- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-systemd/version.rb | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 96135b6..94937be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ 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-ruby-plugin-assets.sh sensu-plugins-hardware + script: bonsai/ruby-runtime/travis-build-ruby-plugin-assets.sh sensu-plugins-systemd skip_cleanup: true on: tags: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 930a9cb..d0527cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## [Unreleased] +## [0.2.1] - 2020-08-05 +### Changed +- Fixed Travis Bonsai upload + ## [0.2.0] - 2020-08-05 ### Breaking Changes - Update minimum required ruby version to 2.3. Drop unsupported ruby versions. @@ -46,7 +50,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/0.2.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/0.2.1...HEAD +[0.2.1]:https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.2.0...0.2.1 [0.2.0]:https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.1.0...0.2.0 [0.1.0]:https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.0.5...0.1.0 [0.0.5]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.0.4...v0.0.5 diff --git a/lib/sensu-plugins-systemd/version.rb b/lib/sensu-plugins-systemd/version.rb index a162214..a214507 100644 --- a/lib/sensu-plugins-systemd/version.rb +++ b/lib/sensu-plugins-systemd/version.rb @@ -4,7 +4,7 @@ module SensuPluginsSystemd module Version MAJOR = 0 MINOR = 2 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end