From aa99eb5fe2859c6db4fd84aea52c718639d9c29e Mon Sep 17 00:00:00 2001 From: Jef Spaleta Date: Thu, 22 Apr 2021 10:00:13 -0800 Subject: [PATCH] prepare for 0.13.0 release --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- go.mod | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b16abce..835e051 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ Versioning](http://semver.org/spec/v2.0.0.html). ## Unreleased +## [0.13.0] - 2021-04-22 +### Changed +- Plugion options using annotation paths will now look for downcased annotation key path as well as uncased path to fix a cornercase associated annotations provied as part of agent config file being automatically downcased. +- Update module to refer to sensu/sensu-plugin-sdk to reflect repository transfer into sensu github org + ## [0.12.0] - 2021-03-18 ### Added diff --git a/README.md b/README.md index 3d12644..d2e4184 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Sensu Go Plugin Library -[![GoDoc](https://godoc.org/github.com/sensu-community/sensu-plugin-sdk?status.svg)](https://godoc.org/github.com/sensu-community/sensu-plugin-sdk) -![Go Test](https://github.com/sensu-community/sensu-plugin-sdk/workflows/Go%20Test/badge.svg) +[![GoDoc](https://godoc.org/github.com/sensu/sensu-plugin-sdk?status.svg)](https://godoc.org/github.com/sensu/sensu-plugin-sdk) +![Go Test](https://github.com/sensu/sensu-plugin-sdk/workflows/Go%20Test/badge.svg) This project is a framework for building Sensu Go plugins. Plugins can be Checks, Handlers, or Mutators. With this library the user only needs to define the plugin arguments, an input validation function and an execution function. diff --git a/go.mod b/go.mod index 4f9c6aa..f524179 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/sensu-community/sensu-plugin-sdk +module github.com/sensu/sensu-plugin-sdk go 1.13