Index: pkg/shelf/changelog.md |
diff --git a/pkg/shelf/changelog.md b/pkg/shelf/changelog.md |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9a8fdc7f36edc99426aa0ec7945de357e5e7d41c |
--- /dev/null |
+++ b/pkg/shelf/changelog.md |
@@ -0,0 +1,30 @@ |
+# Changelog - Shelf - Web Server Middleware for Dart |
nweiz
2014/04/01 19:13:11
Usually in the repo we name this CHANGELOG.md. Als
kevmoo
2014/04/01 19:24:04
Done.
|
+ |
+## 0.3.0+5 |
+ |
+* Updated `pubspec` details for move to Dart SDK. |
+ |
+## 0.3.0 2014-03-25 |
+ |
+* `Response` |
+ * **NEW!** `int get contentLength` |
+ * **NEW!** `DateTime get expires` |
+ * **NEW!** `DateTime get lastModified` |
+* `Request` |
+ * **BREAKING** `contentLength` is now read from `headers`. The constructor argument has been removed. |
nweiz
2014/04/01 19:13:11
Long lines, here and below.
kevmoo
2014/04/01 19:24:04
Done.
|
+ * **NEW!** supports an optional `Stream<List<int>> body` constructor argument. |
+ * **NEW!** `Stream<List<int>> read()` and `Future<String> readAsString([Encoding encoding])` |
+ * **NEW!** `DateTime get ifModifiedSince` |
+ * **NEW!** `String get mimeType` |
+ * **NEW!** `Encoding get encoding` |
+ |
+## 0.2.0 2014-03-06 |
+ |
+* **BREAKING** Removed `Shelf` prefix from all classes. |
+* **BREAKING** `Response` has drastically different constructors. |
+* *NEW!* `Response` now accepts a body of either `String` or `Stream<List<int>>`. |
+* *NEW!* `Response` now exposes `encoding` and `mimeType`. |
+ |
+## 0.1.0 2014-03-02 |
+ |
+* First reviewed release |