From 578c44c628e3134e4d46f3250baf46d6b054cfe8 Mon Sep 17 00:00:00 2001 From: ldelossa Date: Fri, 11 Sep 2020 09:31:35 -0400 Subject: [PATCH] chore: v1.0.25 release Signed-off-by: ldelossa --- CHANGELOG.md | 5 +++++ jira.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64c69905..a01ba68d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.25 - 2020-09-11 + +* Ensure body is NPE safe [Louis DeLosSantos] [[42e5d23](https://github.com/Netflix-Skunkworks/go-jira/commit/42e5d23)] +* Support empty responses in request commands [Louis DeLosSantos] [[b572037](https://github.com/Netflix-Skunkworks/go-jira/commit/b572037)] + ## 1.0.24 - 2020-09-04 * Make -h flag show --help [Benjamin Kane] [[4bf1d03](https://github.com/Netflix-Skunkworks/go-jira/commit/4bf1d03)] diff --git a/jira.go b/jira.go index f72bcf0f..c509a8c6 100644 --- a/jira.go +++ b/jira.go @@ -4,7 +4,7 @@ import ( "github.com/coryb/oreo" ) -const VERSION = "1.0.23" +const VERSION = "1.0.26" type Jira struct { Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`