Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #16 from dart-lang/corelib_2_2
Browse files Browse the repository at this point in the history
Updates for Dart 2.0 core library changes (wave 2.2)
  • Loading branch information
leafpetersen authored Feb 1, 2018
2 parents 52b4a99 + cb0d632 commit e8574ad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: dart
sudo: false
dart:
- dev
- stable
dart_task:
- test
- dartfmt
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.9.6

* Updates to support Dart 2.0 core library changes (wave
2.2). See [issue 31847][sdk#31847] for details.

[sdk#31847]: https://github.com/dart-lang/sdk/issues/31847

# 0.9.5

* Add support for the WebAssembly format.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/mime_multipart_transformer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Uint8List _getBoundary(String boundary) {
* of them streaming the multipart data.
*/
class MimeMultipartTransformer
implements StreamTransformer<List<int>, MimeMultipart> {
extends StreamTransformerBase<List<int>, MimeMultipart> {
final List<int> _boundary;

/**
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: mime
version: 0.9.5
version: 0.9.6
author: Dart Team <misc@dartlang.org>
description: Helper-package for working with MIME.
homepage: https://www.github.com/dart-lang/mime
environment:
sdk: '>=1.8.3 <2.0.0'
sdk: '>=2.0.0-dev.20.0 <2.0.0'
dev_dependencies:
test: '^0.12.0'

0 comments on commit e8574ad

Please sign in to comment.