diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-02-22 00:07:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 09:07:53 +0100 |
commit | a43583f9c8771c07436ee4175e216ab802ff6165 (patch) | |
tree | a1703be1208cd97797c8e777cb710db3fcbae302 /changelog.md | |
parent | 1276e386fe68ab2ac359657297a1a2c570d7aefb (diff) | |
download | Nim-a43583f9c8771c07436ee4175e216ab802ff6165.tar.gz |
relativePath("foo", "foo") is now ".", not "" (#13452)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index 0e0b6ce3d..d929ea0d9 100644 --- a/changelog.md +++ b/changelog.md @@ -27,7 +27,9 @@ It was an oversight to be included in v1.0. - `options` now treats `proc` like other pointer types, meaning `nil` proc variables are converted to `None`. - +- `relativePath("foo", "foo")` is now `"."`, not `""`, as `""` means invalid path + and shouldn't be conflated with `"."`; use -d:nimOldRelativePathBehavior to restore the old + behavioe ### Breaking changes in the compiler |