From 5f184eca105544109accfa050fe60fef3ece9ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Nihlg=C3=A5rd?= Date: Fri, 17 Aug 2018 09:50:53 +0200 Subject: [PATCH] Update changelog --- changelog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog.md b/changelog.md index e11b32f1ae..45bdb495dc 100644 --- a/changelog.md +++ b/changelog.md @@ -37,6 +37,11 @@ strings anymore for its ``unit`` parameter. Instead the space is controlled by a new parameter ``useUnitSpace``. +- The ``times.parse`` and ``times.format`` procs have been rewritten. + The proc signatures are the same so it should generally not break anything. + However, the new implementation is a bit stricter, which is a breaking change. + For example ``parse("2017-01-01 foo", "yyyy-MM-dd")`` will now raise an error. + - ``proc `-`*(a, b: Time): int64`` in the ``times`` module has changed return type to ``times.Duration`` in order to support higher time resolutions. The proc is no longer deprecated.