Skip to content

Commit 61bf33c

Browse files
authored
Merge pull request flutter#4 from dart-lang/update
expand the sdk constraint; rev version
2 parents 52440c8 + 4d41779 commit 61bf33c

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.4
2+
3+
* Expand the SDK version constraint to include `<2.0.0-dev.infinity`.
4+
15
## 1.1.3
26

37
* Fix all strong-mode warnings.

analysis_options.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
analyzer:
2+
strong-mode: true

lib/typed_buffers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/// That means that using the [TypedDataView.buffer] getter is not guaranteed
1212
/// to return the same result each time it is used, and that the buffer may
1313
/// be larger than what the list is using.
14-
library dart.pkg.typed_data.typed_buffers;
14+
library typed_data.typed_buffers;
1515

1616
import "dart:collection" show ListBase;
1717
import "dart:typed_data";

lib/typed_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Utilities and functionality related to the "dart:typed_data" library.
6-
library dart.pkg.typed_data;
6+
library typed_data;
77

88
export "package:typed_data/typed_buffers.dart";

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: typed_data
2-
version: 1.1.3
2+
version: 1.1.4
33
author: Dart Team <[email protected]>
44
description: Utility functions and classes related to the 'dart:typed_data' library.
55
homepage: https://github.com/dart-lang/typed_data
66
dev_dependencies:
77
test: "^0.12.0"
88
environment:
9-
sdk: ">=1.8.0 <2.0.0"
9+
sdk: ">=1.8.0 <2.0.0-dev.infinity"

0 commit comments

Comments
 (0)