summary refs log tree commit diff stats
path: root/web/news
diff options
context:
space:
mode:
authorJoey Payne <jyapayne@gmail.com>2016-06-11 18:59:41 -0600
committerJoey Payne <jyapayne@gmail.com>2016-06-13 20:54:58 -0600
commit84d9081e21783151b40c0320ca50df4845043559 (patch)
tree2098fe5a8c1b9d50ef5b443f86f94fd1775d75f0 /web/news
parentf6e30981a84466aa0a0cf7d51023d5edbb3c2703 (diff)
downloadNim-84d9081e21783151b40c0320ca50df4845043559.tar.gz
Move partition and rpartition to new strmisc module
This was done because partition is an uncommonly used proc that is still
useful in rare cases. There is also a desire to add more procs to this
module at a later time.
Diffstat (limited to 'web/news')
-rw-r--r--web/news/version_0_15_released.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst
index ad3119cca..2f6c2736c 100644
--- a/web/news/version_0_15_released.rst
+++ b/web/news/version_0_15_released.rst
@@ -17,6 +17,15 @@ Library Additions
 - Added ``readHeaderRow`` and ``rowEntry`` to ``parsecsv.nim`` to provide
   a lightweight alternative to python's ``csv.DictReader``.
 
+- Added ``center``, ``rsplit``, and ``expandTabs`` to ``strutils.nim`` to
+  provide similar Python functionality for Nim's strings.
+
+- Added ``isTitle``, ``title``, and ``swapCase`` to ``unicode.nim`` to
+  provide unicode aware string case manipulation.
+
+- Added a new module ``lib/pure/strmisc.nim`` to hold uncommon string
+  operations. Currently contains ``partition`` and ``rpartition``.
+
 Compiler Additions
 ------------------