Skip to content

Commit fcfa595

Browse files
committed
2.0.0
1 parent 23f2b1d commit fcfa595

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ Unreleased
1010
### Fixed
1111

1212

13+
2.0.0 / 2017-01-16
14+
------------------
15+
16+
### Removed
17+
- **BREAKING:** Removed support for Node `v0.12`. The Node foundation stopped officially supporting it
18+
on Jan 1st, 2017.
19+
- **BREAKING:** Remove `walk()` and `walkSync()`. `walkSync()` was only part of `fs-extra` for a little
20+
over two months. Use [klaw](https://github.com/jprichardson/node-klaw) instead of `walk()`, in fact, `walk()` was just
21+
an alias to klaw. For `walkSync()` use [klaw-sync](https://github.com/mawni/node-klaw-sync). See: [#338], [#339]
22+
23+
### Changed
24+
- **BREAKING:** Renamed `clobber` to `overwrite`. This affects `copy()`, `copySync()`, and `move()`. [#330], [#333]
25+
- Moved docs, to `docs/`. [#340]
26+
27+
### Fixed
28+
- Apply filters to directories in `copySync()` like in `copy()`. [#324]
29+
- A specific condition when disk is under heavy use, `copy()` can fail. [#326]
30+
31+
1332
1.0.0 / 2016-11-01
1433
------------------
1534

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fs-extra",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",
55
"homepage": "https://github.com/jprichardson/node-fs-extra",
66
"repository": {

0 commit comments

Comments
 (0)