diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-01-18 12:39:49 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-01-18 12:39:49 +0000 |
commit | 255fee81be11843df67ff5dfd456c7aea28afc1a (patch) | |
tree | 6472db06d2d89fbc7fafaa28facd6daa296f5362 | |
parent | 2309975f782bf59b240e3874d5c31b4b299eca5d (diff) | |
download | Nim-255fee81be11843df67ff5dfd456c7aea28afc1a.tar.gz |
Documented PCRE version bump in 0.12.0 in news.txt.
-rw-r--r-- | web/news.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt index bd74ae1a3..8d11127a1 100644 --- a/web/news.txt +++ b/web/news.txt @@ -121,6 +121,11 @@ changes are also documented in this forum Changes affecting backwards compatibility ----------------------------------------- +- The regular expression modules, ``re`` and ``nre`` now depend on version + 8.36 of PCRE. If you have an older version you may see a message similar + to ``could not import: pcre_free_study`` output when you start your + program. See `this issue <https://github.com/docopt/docopt.nim/issues/13>`_ + for more information. - ``tables.[]``, ``strtabs.[]``, ``critbits.[]`` **now raise** the ``KeyError`` **exception when the key does not exist**! Use the new ``getOrDefault`` instead to get the old behaviour. Compile all your |