summary refs log tree commit diff stats
path: root/web/news
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-07-02 17:49:43 +0200
committerGitHub <noreply@github.com>2016-07-02 17:49:43 +0200
commit97b59506d6652f56e8680735884aa7b4029f0b4d (patch)
treec1423ae6fc6ee4f2291bb1e4e2be02b99fddb007 /web/news
parenta9d86d16abb49b1613d6b05e4aeb3ce31b34b5b0 (diff)
parentff85ef456ad3d538a6cef1aad477b69a8e98eb0e (diff)
downloadNim-97b59506d6652f56e8680735884aa7b4029f0b4d.tar.gz
Merge pull request #4389 from jyapayne/add_unicode_procs
Add unicode procs
Diffstat (limited to 'web/news')
-rw-r--r--web/news/version_0_15_released.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/news/version_0_15_released.rst b/web/news/version_0_15_released.rst
index ecda59fcd..96d9abc99 100644
--- a/web/news/version_0_15_released.rst
+++ b/web/news/version_0_15_released.rst
@@ -23,8 +23,10 @@ Library Additions
 - Added ``center`` and ``rsplit`` 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 ``isTitle``, ``title``, ``swapCase``, ``isUpper``, ``toUpper``,
+  ``isLower``, ``toLower``, ``isAlpha``, ``isSpace``, and ``capitalize``
+  to ``unicode.nim`` to provide unicode aware case manipulation and case
+  testing.
 
 - Added a new module ``lib/pure/strmisc.nim`` to hold uncommon string
   operations. Currently contains ``partition``, ``rpartition``