Skip to content

Commit

Permalink
Update NEWS.md (JuliaLang#17562)
Browse files Browse the repository at this point in the history
* Update NEWS.md

A few changes to mollify the OCD of the one who opened issue JuliaLang#17478...

* Update NEWS.md

Added some spaces. Perhaps I shouldn't have edited it in a browser window...

* Update NEWS.md

finally found the space
  • Loading branch information
cormullion authored and tkelman committed Jul 23, 2016
1 parent db11bc7 commit aaf7d56
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,22 @@ Library improvements
* `Date` and `DateTime` values can now be rounded to a specified resolution (e.g., 1 month or
15 minutes) with `floor`, `ceil`, and `round` ([#17037]).

* File handling:

* A new function `walkdir()` returns an iterator that walks the directory tree of a directory. ([#1765])

```
for (root, dirs, files) in walkdir(expanduser("~/.julia/v0.5/Plots/src"))
println("$(length(files)) \t files in $root")
end
19 files in /Users/me/.julia/v0.5/Plots/src
15 files in /Users/me/.julia/v0.5/Plots/src/backends
4 files in /Users/me/.julia/v0.5/Plots/src/deprecated
```

* A new function `chown()` changes the ownership of files. ([#15007])


Deprecated or removed
---------------------

Expand Down

0 comments on commit aaf7d56

Please sign in to comment.