Bumping CHANGELOG and common_mark_stats.txt
diff --git a/pkgs/markdown/CHANGELOG.md b/pkgs/markdown/CHANGELOG.md
index da1a56f..2c03a83 100644
--- a/pkgs/markdown/CHANGELOG.md
+++ b/pkgs/markdown/CHANGELOG.md
@@ -1,11 +1,18 @@
-## 0.10.2-dev
+## 0.11.0-dev
 
 * Parse HTML blocks more accurately, according to
   [CommonMark](http://spec.commonmark.org/0.24/#html-blocks).
 * Support [shortcut reference
   links](http://spec.commonmark.org/0.24/#reference-link).
 * Don't allow an indented code block to interrupt a paragraph.
-* There are now 463/613 (76%) passing CommonMark v0.24 specs.
+* Change definition of "loose" and "strict" lists (items wrapped in
+  paragraph tags vs not) to CommonMark's. The primary difference is that any
+  single list item can trigger the entire list to be marked as "loose", rather
+  than defining "looseness" on each specific item.
+* Fix paragraph continuations in blockquotes and list items.
+* Fix silly typing bug with `tool/common_mark_stats.dart`, which resulted in
+  a dramatic overestimate of our CommonMark compliance.
+* There are now 427/613 (69%) passing CommonMark v0.25 specs.
 
 ## 0.10.1
 
@@ -13,6 +20,8 @@
   properly (#86). Thanks @mehaase!
 * Fix processing of `[ ... ]` syntax when no resolver is specified (#92).
 * There are now 401/613 (65%) passing CommonMark v0.24 specs.
+  (_Actually: after 0f64c8f the actual number of passing tests was 352/613
+  (57%)._)
 
 ## 0.10.0
 
diff --git a/pkgs/markdown/pubspec.yaml b/pkgs/markdown/pubspec.yaml
index 2e3f1f4..3f13a21 100644
--- a/pkgs/markdown/pubspec.yaml
+++ b/pkgs/markdown/pubspec.yaml
@@ -1,5 +1,5 @@
 name: markdown
-version: 0.10.2-dev
+version: 0.11.0-dev
 author: Dart Team <misc@dartlang.org>
 description: A library for converting markdown to HTML.
 homepage: https://github.com/dart-lang/markdown
diff --git a/pkgs/markdown/tool/common_mark_stats.txt b/pkgs/markdown/tool/common_mark_stats.txt
index 7082c31..0c10a61 100644
--- a/pkgs/markdown/tool/common_mark_stats.txt
+++ b/pkgs/markdown/tool/common_mark_stats.txt
@@ -2,7 +2,7 @@
   10 of   19 –  52.6%  Autolinks
    8 of   13 –  61.5%  Backslash escapes
    1 of    1 – 100.0%  Blank lines
-  18 of   25 –  72.0%  Block quotes
+  22 of   25 –  88.0%  Block quotes
   13 of   15 –  86.7%  Code spans
   81 of  129 –  62.8%  Emphasis and strong emphasis
   10 of   12 –  83.3%  Entity and numeric character references
@@ -14,14 +14,14 @@
    1 of    1 – 100.0%  Inlines
   11 of   23 –  47.8%  Link reference definitions
   52 of   81 –  64.2%  Links
-  20 of   47 –  42.6%  List items
-   3 of   24 –  12.5%  Lists
+  22 of   47 –  46.8%  List items
+   5 of   24 –  20.8%  Lists
    8 of    8 – 100.0%  Paragraphs
    1 of    1 – 100.0%  Precedence
   15 of   21 –  71.4%  Raw HTML
-  15 of   26 –  57.7%  Setext headings
+  20 of   26 –  76.9%  Setext headings
    2 of    2 – 100.0%  Soft line breaks
    6 of    9 –  66.7%  Tabs
    3 of    3 – 100.0%  Textual content
-  16 of   19 –  84.2%  Thematic breaks
- 413 of  616 –  67.0%  TOTAL
+  17 of   19 –  89.5%  Thematic breaks
+ 427 of  616 –  69.3%  TOTAL