diff options
author | Miran <narimiran@disroot.org> | 2020-08-25 15:59:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 15:59:42 +0200 |
commit | 5163fe7d878f48870c6d0235d70d45e1e414dca8 (patch) | |
tree | 79d78e9339cd58400f2a8490bb2778ef78fdb4b1 /changelog.md | |
parent | 7cee63bba3805bd49f0c03b94d65f02dea04f946 (diff) | |
download | Nim-5163fe7d878f48870c6d0235d70d45e1e414dca8.tar.gz |
remove deprecation from `math.round` (#15224)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index eebccb62f..3865f1efb 100644 --- a/changelog.md +++ b/changelog.md @@ -164,7 +164,14 @@ echo foo ``` +- Proc `math.round` is no longer deprecated. The advice to use `strformat` instead + cannot be applied to every use case. The limitations and the (lack of) reliability + of `round` are well documented. + + + ## Language changes + - The `=destroy` hook no longer has to reset its target, as the compiler now automatically inserts `wasMoved` calls where needed. - In the newruntime it is now allowed to assign to the discriminator field |