diff options
Diffstat (limited to 'changelogs')
-rw-r--r-- | changelogs/changelog_2_0_0.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/changelog_2_0_0.md b/changelogs/changelog_2_0_0.md index 5707cf955..b56a3e71c 100644 --- a/changelogs/changelog_2_0_0.md +++ b/changelogs/changelog_2_0_0.md @@ -258,6 +258,8 @@ - `strutils.split` and `strutils.rsplit` now forbid an empty separator. +- Custom destructors now supports non-var parameters, e.g. `proc =destroy[T: object](x: T)` is valid. `proc =destroy[T: object](x: var T)` is deprecated. + - Relative imports will not resolve to searched paths anymore, e.g. `import ./tables` now reports an error properly. ## Standard library additions and changes |