Release 0.12
This commit is contained in:
parent
039339154f
commit
270cdab44e
8
NEWS
8
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)
|
v0.11 (2021-08-17)
|
||||||
* Add support for contacting logs via HTTP proxies;
|
* Add support for contacting logs via HTTP proxies;
|
||||||
just set the appropriate environment variable as documented at
|
just set the appropriate environment variable as documented at
|
||||||
|
|
|
@ -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
|
// 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
|
// Public License, v. 2.0. If a copy of the MPL was not distributed
|
||||||
|
@ -9,4 +9,4 @@
|
||||||
|
|
||||||
package certspotter
|
package certspotter
|
||||||
|
|
||||||
const Version = "0.11"
|
const Version = "0.12"
|
||||||
|
|
Loading…
Reference in New Issue