From 270cdab44efe7e18ba9619337ccef9c27c8b82bd Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Tue, 7 Jun 2022 08:22:27 -0400 Subject: [PATCH] Release 0.12 --- NEWS | 8 ++++++++ version.go | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 170021c..d0c4f1d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +v0.12 (2022-06-07) + * Retry failed log requests. This should make certspotter resilient + to rate limiting by logs. + * Add -version flag. + * Eliminate unnecessary dependency. certspotter now depends only on + golang.org/x packages. + * Switch to Go modules. + v0.11 (2021-08-17) * Add support for contacting logs via HTTP proxies; just set the appropriate environment variable as documented at diff --git a/version.go b/version.go index 844dc2d..5083b6b 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ -// Copyright (C) 2021 Opsmate, Inc. +// Copyright (C) 2022 Opsmate, Inc. // // This Source Code Form is subject to the terms of the Mozilla // Public License, v. 2.0. If a copy of the MPL was not distributed @@ -9,4 +9,4 @@ package certspotter -const Version = "0.11" +const Version = "0.12"