From b8f2c54e60423be9b62e4276489c6a4d62a4b503 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 24 Aug 2020 17:27:34 -0700 Subject: [PATCH] Version bump to v1.3.0 --- CHANGELOG.md | 16 ++++++++++++++++ pkg/site/site.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 546ea65..ee73df6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Release Notes +## Version 1.3.0 - 2020-08-24 + +* Defer comment tags until all data is fetched, use cached metadata when available [#207](https://github.com/google/triage-party/pull/207) +* Make the Tags a set to avoid issues of DeDup [#203](https://github.com/google/triage-party/pull/203) +* Use internal mtime tracking to determine in-memory issue validatity [#205](https://github.com/google/triage-party/pull/205) +* Add svg for future scaling image uses [#202](https://github.com/google/triage-party/pull/202) +* fix startup panic [#199](https://github.com/google/triage-party/pull/199) +* cursor:pointer for collapsible [#198](https://github.com/google/triage-party/pull/198) +* Allow collections to define their own velocity stats [#191](https://github.com/google/triage-party/pull/191) + +Huge thank you for this release towards our contributors: + +- Grant Mccloskey +- Thomas Strömberg +- balopat + ## Version 1.2.1 - 2020-07-17 * Return stale results if GitHub cannot be queried [#189](https://github.com/google/triage-party/pull/189) diff --git a/pkg/site/site.go b/pkg/site/site.go index 2dc41b2..2f1dcff 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.2-beta.0" +const VERSION = "v1.3.0" var ( nonWordRe = regexp.MustCompile(`\W`)