summary refs log tree commit diff stats
path: root/changelog.md
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-08-28 10:25:13 +0200
committerGitHub <noreply@github.com>2019-08-28 10:25:13 +0200
commitd4af0554c43fc6db8c1078169be0c216a00c1628 (patch)
tree5b6f66567fec5b7766f7cfa98e96129aede92e78 /changelog.md
parent20dec10722eecb1e9b9ee43a3e1cda7533837c72 (diff)
downloadNim-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.md12
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