diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-02 17:55:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-02 17:55:57 +0200 |
commit | b56e5e159a166e290fe202eae6197494d6f5acd8 (patch) | |
tree | 0c652e9fd419b829c4d56611209b2f4109a78eec /web | |
parent | 97b59506d6652f56e8680735884aa7b4029f0b4d (diff) | |
parent | 79a8a5ee72b7aca09e1dfdb03744020ebd4dae2b (diff) | |
download | Nim-b56e5e159a166e290fe202eae6197494d6f5acd8.tar.gz |
Merge pull request #4361 from jyapayne/fix_split
Fix #4305: Make split proc for set[char] consistent
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 96d9abc99..906265ccb 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 ----------------- |