From 4e9f5e6b7d9c09f6d58c6d0943fc8c7fe750b334 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Fri, 17 Jul 2020 20:31:15 -0700 Subject: [PATCH] Version bump to v1.2.1 --- CHANGELOG.md | 6 ++++++ pkg/site/site.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c986fc4..546ea65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes +## Version 1.2.1 - 2020-07-17 + +* Return stale results if GitHub cannot be queried [#189](https://github.com/google/triage-party/pull/189) +* Fix Kanban ETA estimation, add ETA for non-milestone pages [#188](https://github.com/google/triage-party/pull/188) +* Automatically pick a contrasting label text color [#187](https://github.com/google/triage-party/pull/187) + ## Version 1.2.0 - 2020-07-14 * Don't block page-loads if missing content, add healthz [#175](https://github.com/google/triage-party/pull/175) diff --git a/pkg/site/site.go b/pkg/site/site.go index 8597846..06ea73b 100644 --- a/pkg/site/site.go +++ b/pkg/site/site.go @@ -40,7 +40,7 @@ import ( ) // VERSION is what version of Triage Party we advertise as. -const VERSION = "v1.2.0" +const VERSION = "v1.2.1" var ( nonWordRe = regexp.MustCompile(`\W`)