From db2bd124b2bada73408df8c453f4fb676775b306 Mon Sep 17 00:00:00 2001 From: Jef Spaleta Date: Tue, 17 Dec 2019 10:36:02 -0900 Subject: [PATCH] prepping brown bag 4.1.1 release to fix asset generation problem --- .bonsai.yml | 16 ++++++++-------- CHANGELOG.md | 7 ++++++- lib/sensu-plugins-memory-checks/version.rb | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.bonsai.yml b/.bonsai.yml index 521ba28..cd32ada 100644 --- a/.bonsai.yml +++ b/.bonsai.yml @@ -18,14 +18,14 @@ builds: - "entity.system.os == 'linux'" - "entity.system.arch == 'amd64'" - "entity.system.platform == 'alpine'" -- platform: "centos" - arch: "amd64" - asset_filename: "#{repo}_#{version}_centos_linux_amd64.tar.gz" - sha_filename: "#{repo}_#{version}_sha512-checksums.txt" - filter: - - "entity.system.os == 'linux'" - - "entity.system.arch == 'amd64'" - - "entity.system.platform_family == 'rhel'" +#- platform: "centos" +# arch: "amd64" +# asset_filename: "#{repo}_#{version}_centos_linux_amd64.tar.gz" +# sha_filename: "#{repo}_#{version}_sha512-checksums.txt" +# filter: +# - "entity.system.os == 'linux'" +# - "entity.system.arch == 'amd64'" +# - "entity.system.platform_family == 'rhel'" - platform: "centos6" arch: "amd64" asset_filename: "#{repo}_#{version}_centos6_linux_amd64.tar.gz" diff --git a/CHANGELOG.md b/CHANGELOG.md index fc99328..336c67e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu ## [Unreleased] +## [4.1.1] - 2019-12-17 +### Fixed +- Quick fix for asset generation, removing centos build from bonsai.yml + ## [4.1.0] - 2019-12-16 ### Changed - Updated asset build target to support Centos6 @@ -163,7 +167,8 @@ This CHANGELOG follows the located [here](https://github.com/sensu-plugins/commu ### Added - initial release -[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/4.1.0...HEAD +[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/4.1.1...HEAD +[4.1.1]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/4.1.0..4.1.1 [4.1.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/4.0.0..4.1.0 [4.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.2.0..4.0.0 [3.2.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.1.3..3.2.0 diff --git a/lib/sensu-plugins-memory-checks/version.rb b/lib/sensu-plugins-memory-checks/version.rb index 6d85ab5..4641b17 100644 --- a/lib/sensu-plugins-memory-checks/version.rb +++ b/lib/sensu-plugins-memory-checks/version.rb @@ -4,7 +4,7 @@ module SensuPluginsMemoryChecks module Version MAJOR = 4 MINOR = 1 - PATCH = 0 + PATCH = 1 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end