Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit e1692a9

Browse files
committed
Minor doc updates
1 parent 338adcb commit e1692a9

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

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

37
* Added const constructors for `Platform` and `LocalPlatform`

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Platform
22

3-
[![Build Status -](https://travis-ci.org/tvolkert/platform.svg?branch=master)](https://travis-ci.org/tvolkert/platform)
4-
[![Coverage Status -](https://coveralls.io/repos/github/tvolkert/platform/badge.svg?branch=master)](https://coveralls.io/github/tvolkert/platform?branch=master)
3+
[![Build Status -](https://travis-ci.org/google/platform.dart.svg?branch=master)](https://travis-ci.org/google/platform.dart)
4+
[![Coverage Status -](https://coveralls.io/repos/github/google/platform.dart/badge.svg?branch=master)](https://coveralls.io/github/google/platform.dart?branch=master)
55

66
A generic platform abstraction for Dart.
77

@@ -11,7 +11,3 @@ accessing platform-specific information.
1111
`package:platform` provides a lightweight wrapper around the static `Platform`
1212
properties that exist in `dart:io`. However, it uses instance properties rather
1313
than static properties, making it possible to mock out in tests.
14-
15-
### Disclaimer
16-
17-
This is not an official Google product.

lib/platform.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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+
/// Core interfaces & classes.
56
export 'src/interface/local_platform.dart';
67
export 'src/interface/platform.dart';
78
export 'src/testing/fake_platform.dart';

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: platform
2-
version: 1.0.1
2+
version: 1.0.2
33
authors:
44
- Todd Volkert <[email protected]>
55
description: A pluggable, mockable platform abstraction for Dart.
6-
homepage: https://github.com/tvolkert/platform
6+
homepage: https://github.com/google/platform.dart
77

88
dev_dependencies:
99
test: ^0.12.10

0 commit comments

Comments
 (0)