Skip to content

Commit

Permalink
Merge pull request #12869 from malmaud/news
Browse files Browse the repository at this point in the history
Some updates to NEWS
  • Loading branch information
simonster committed Aug 29, 2015
2 parents c4b089f + 1b6b5a5 commit 732860a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,11 @@ Library improvements

* `is_valid_char(c)` now correctly handles Unicode "non-characters", which are valid Unicode codepoints ([#11171]).

* Backreferences in replacement strings in calls to `replace` with a `Regex` pattern are now supported ([#11849]).
Use the `s` string prefix to indicate a replacement string contains a backreference. For example, `replace("ab", r"(.)(.)", s"\2\1")` yields "ba".

* Capture groups in regular expressions can now be named using PCRE syntax, `(?P<group_name>...)`. Capture group matches can be accessed by name by indexing a `Match` object with the name of the group ([#11566]).

* Array and AbstractArray improvements

* New multidimensional iterators and index types for efficient iteration over `AbstractArray`s. Array iteration should generally be written as `for i in eachindex(A) ... end` rather than `for i = 1:length(A) ... end` ([#8432]).
Expand Down Expand Up @@ -364,6 +369,8 @@ Library improvements

* Added function `readlink` which returns the value of a symbolic link "path" ([#10714]).

* Added function `ismount` which checks if a directory is a mount point ([#11279]).

* The `cp` function now accepts keyword arguments `remove_destination` and `follow_symlinks` ([#10888]).

* The `mv` function now accepts keyword argument `remove_destination` ([#11145]).
Expand Down

0 comments on commit 732860a

Please sign in to comment.