Skip to content

Commit d4becd7

Browse files
authored
Minor fixes based on an inspection of 2.0.0 release in pub and on dartdocs.org (dart-archive#37)
1 parent a396b83 commit d4becd7

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 2.0.1
2+
3+
* Minor doc updates
4+
15
#### 2.0.0
26

37
* Improved `toString` implementations in file system entity classes

lib/chroot.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
/// A file system that provides a view into _another_ [FileSystem] via a path.
56
export 'src/backends/chroot.dart';

lib/memory.dart

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'src/backends/memory.dart';
6-
import 'src/interface.dart';
7-
8-
/// An implementation of [FileSystem] that exists entirely in memory with an
5+
/// An implementation of `FileSystem` that exists entirely in memory with an
96
/// internal representation loosely based on the Filesystem Hierarchy Standard.
10-
/// [MemoryFileSystem] is suitable for mocking and tests, as well as for
11-
/// caching or staging before writing or reading to a live system.
127
export 'src/backends/memory.dart';

lib/record_replay.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
/// File systems that work together to record invocations during live operation
6+
/// and then play invocations back in tests.
57
export 'src/backends/record_replay/errors.dart';
68
export 'src/backends/record_replay/events.dart'
79
show InvocationEvent, PropertyGetEvent, PropertySetEvent, MethodEvent;

lib/testing.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
/// Matchers (from `package:test`) for use in tests that deal with file systems.
56
export 'src/testing/core_matchers.dart';
67
export 'src/testing/record_replay_matchers.dart';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: file
2-
version: 2.0.0
2+
version: 2.0.1
33
authors:
44
- Matan Lurey <matanl@google.com>
55
- Yegor Jbanov <yjbanov@google.com>

0 commit comments

Comments
 (0)