From 2aa9fa25da83bdfff756c36a91442edc9a84576c Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Sun, 15 Mar 2020 08:46:27 -0700 Subject: [PATCH] Prepare release v1.14.1 (#800) Note that I'm considering all of these changes as bufixes. If reviewers suggest otherwise, we can switch to 1.15.0. --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0efe94170..6e28b6ea4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.14.1 (14 Mar 2020) + +Bugfixes: +* [#791][]: Fix panic on attempting to build a logger with an invalid Config. +* [#795][]: Vendoring Zap with `go mod vendor` no longer includes Zap's + development-time dependencies. +* [#799][]: Fix issue introduced in 1.14.0 that caused invalid JSON output to + be generated for arrays of `time.Time` objects when using string-based time + formats. + +Thanks to @YashishDua for their contributions to this release. + ## 1.14.0 (20 Feb 2020) Enhancements: @@ -364,3 +376,6 @@ upgrade to the upcoming stable release. [#773]: https://github.com/uber-go/zap/pull/773 [#775]: https://github.com/uber-go/zap/pull/775 [#786]: https://github.com/uber-go/zap/pull/786 +[#791]: https://github.com/uber-go/zap/pull/791 +[#795]: https://github.com/uber-go/zap/pull/795 +[#799]: https://github.com/uber-go/zap/pull/799