diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-08-28 10:25:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-28 10:25:13 +0200 |
commit | d4af0554c43fc6db8c1078169be0c216a00c1628 (patch) | |
tree | 5b6f66567fec5b7766f7cfa98e96129aede92e78 /changelog.md | |
parent | 20dec10722eecb1e9b9ee43a3e1cda7533837c72 (diff) | |
download | Nim-d4af0554c43fc6db8c1078169be0c216a00c1628.tar.gz |
remove unicode.Rune16 without deprecation period; fixes https://github.com/nim-lang/RFCs/issues/151 (#12072)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 749959e3c..61e6711db 100644 --- a/changelog.md +++ b/changelog.md @@ -19,6 +19,18 @@ ### Breaking changes in the standard library +- We removed `unicode.Rune16` without any deprecation period as the name + was wrong (see the [RFC](https://github.com/nim-lang/RFCs/issues/151) for details) + and we didn't find any usages of it in the wild. If you still need it, add this + piece of code to your project: + +```nim + +type + Rune16* = distinct int16 + +``` + ### Breaking changes in the compiler |