diff options
author | Joey Payne <jyapayne@gmail.com> | 2016-06-17 11:33:38 -0600 |
---|---|---|
committer | Joey Payne <jyapayne@gmail.com> | 2016-07-01 07:24:30 -0600 |
commit | b80f12533300b1e5382ea6cdf300fa52543a213d (patch) | |
tree | e9b8ef7e81c6c70836bcf55368c41860e20eb70d /web | |
parent | 76f81d4aa4fa79de19019b77d0ca972b68e7be6e (diff) | |
download | Nim-b80f12533300b1e5382ea6cdf300fa52543a213d.tar.gz |
Add new split to breaking changes doc
Diffstat (limited to 'web')
-rw-r--r-- | web/news/version_0_15_released.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst index ecda59fcd..e3678d8dc 100644 --- a/web/news/version_0_15_released.rst +++ b/web/news/version_0_15_released.rst @@ -13,6 +13,12 @@ Changes affecting backwards compatibility - De-deprecated ``re.nim`` because we have too much code using it and it got the basic API right. +- ``split`` with ``set[char]`` as a delimiter in ``strutils.nim`` + no longer strips and splits characters out of the target string + by the entire set of characters. Instead, it now behaves in a + similar fashion to ``split`` with ``string`` and ``char`` + delimiters. + Library Additions ----------------- |