Skip to content

Commit

Permalink
Version 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cbracken committed Nov 6, 2020
1 parent 139d02e commit 66f473c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/async/iteration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import 'dart:async';
typedef AsyncAction<T, E> = Future<T> Function(E e);

/// An asynchronous funcuntion that combines an element [e] with a previous
/// value [previous], for use with [reduceAsync].
/// value [previous].
typedef AsyncCombiner<T, E> = Future<T> Function(T previous, E e);

/// Calls [action] for each item in [iterable] in turn, waiting for the Future
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >-
Quiver is a set of utility libraries for Dart that makes using many Dart
libraries easier and more convenient, or adds additional functionality.
homepage: https://github.com/google/quiver-dart
version: 2.1.4+1
version: 2.1.5
environment:
sdk: '>=2.0.0-dev.61 <3.0.0'
dependencies:
Expand Down
1 change: 1 addition & 0 deletions test/async/iteration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// ignore_for_file: deprecated_member_use_from_same_package
library quiver.async.iteration_test;

import 'dart:async';
Expand Down
1 change: 1 addition & 0 deletions test/io_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// ignore_for_file: deprecated_member_use_from_same_package
@TestOn('vm')
library quiver.io_test;

Expand Down
1 change: 1 addition & 0 deletions test/mirrors_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// ignore_for_file: deprecated_member_use_from_same_package
@TestOn('vm')
library quiver.mirrors_test;

Expand Down

0 comments on commit 66f473c

Please sign in to comment.