Skip to content

Commit cdcddf9

Browse files
committed
1 parent 4ef2695 commit cdcddf9

File tree

5 files changed

+8
-576
lines changed

5 files changed

+8
-576
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
## 1.1.0
1+
## 2.0.0
2+
3+
* Removed the `DataUri` class. It's redundant with the `Uri.data` getter that's
4+
coming in Dart 1.14, and the `DataUri.data` field in particular was an invalid
5+
override of that field.
26

3-
* Added a `DataUri` class for encoding and decoding data URIs.
7+
## 1.1.0
48

59
* The MIME spec says that media types and their parameter names are
610
case-insensitive. Accordingly, `MediaType` now uses a case-insensitive map for

lib/http_parser.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ library http_parser;
66

77
export 'src/authentication_challenge.dart';
88
export 'src/case_insensitive_map.dart';
9-
export 'src/data_uri.dart';
109
export 'src/http_date.dart';
1110
export 'src/media_type.dart';
1211
export 'src/web_socket.dart';

lib/src/data_uri.dart

Lines changed: 0 additions & 328 deletions
This file was deleted.

pubspec.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
name: http_parser
2-
version: 1.1.0
2+
version: 2.0.0
33
author: "Dart Team <[email protected]>"
44
homepage: https://github.com/dart-lang/http_parser
55
description: >
66
A platform-independent package for parsing and serializing HTTP formats.
77
dependencies:
8-
convert: "^1.0.0"
98
collection: ">=0.9.1 <2.0.0"
109
crypto: "^0.9.0"
1110
source_span: "^1.0.0"
1211
string_scanner: ">=0.0.0 <0.2.0"
1312
dev_dependencies:
14-
charcode: "^1.1.0"
1513
test: "^0.12.0"
1614
environment:
17-
sdk: ">=1.12.0 <2.0.0"
15+
sdk: ">=1.8.0 <2.0.0"

0 commit comments

Comments
 (0)