diff options
author | Oscar NihlgÄrd <oscarnihlgard@gmail.com> | 2018-08-17 09:50:53 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2018-08-17 15:51:02 +0100 |
commit | 5f184eca105544109accfa050fe60fef3ece9ce7 (patch) | |
tree | 05fa74d5fd19eb02887d80680470f916269697ab /changelog.md | |
parent | 33ed8f7e73cb36f82f1abd3462364c7c02551a18 (diff) | |
download | Nim-5f184eca105544109accfa050fe60fef3ece9ce7.tar.gz |
Update changelog
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index e11b32f1a..45bdb495d 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. |