diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-07-21 09:46:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 09:46:18 +0200 |
commit | 9c2442af94fc3db8486ee16e82ea27752e9ae4f5 (patch) | |
tree | b4562ac9ae278e6c89ce49a5f33f2e071c0487f0 /changelog.md | |
parent | b6f9f7a33eb550a75350c2bce8423269734bb185 (diff) | |
download | Nim-9c2442af94fc3db8486ee16e82ea27752e9ae4f5.tar.gz |
unary slices get a deprecation period (#18549)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md index 1a904d043..ece88f710 100644 --- a/changelog.md +++ b/changelog.md @@ -63,8 +63,7 @@ - `hashes.hash(proc|ptr|ref|pointer)` now calls `hash(int)` and honors `-d:nimIntHash1`, `hashes.hash(closure)` has also been improved. -- The unary slice `..b` was removed, use `0..b` instead or use `-d:nimLegacyUnarySlice` - for a deprecation period. +- The unary slice `..b` was deprecated, use `0..b` instead. - Removed `.travis.yml`, `appveyor.yml.disabled`, `.github/workflows/ci.yml.disabled`. |