Update README.md and CHANGELOG.md.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 902b6ef..e870ea8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,29 @@
# MD4C Change Log
+## Next Version (Work in Progress)
+
+Changes:
+
+ * Changes mandated by CommonMark specification 0.30.
+
+ Actually there are only very minor changes to recognition of HTML blocks:
+
+ - The tag `<textarea>` now triggers HTML block (of type 1 as per the
+ specification).
+
+ - HTML declaration (HTML block type 4) is not required to begin with an
+ upper-case ASCII character after the `<!`. Any ASCII character is now
+ allowed.
+
+ Other than that, the newest specification mainly improves test coverage and
+ clarifies its wording in some cases, without affecting the implementation.
+
+ Refer to [CommonMark
+ 0.30 notes](https://github.com/commonmark/commonmark-spec/releases/tag/0.30)
+ for more info.
+
+
## Version 0.4.8
Fixes:
diff --git a/README.md b/README.md
index 8d36b47..9abe987 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ MD4C is Markdown parser implementation in C, with the following features:
* **Compliance:** Generally, MD4C aims to be compliant to the latest version of
[CommonMark specification](http://spec.commonmark.org/). Currently, we are
- fully compliant to CommonMark 0.29.
+ fully compliant to CommonMark 0.30.
* **Extensions:** MD4C supports some commonly requested and accepted extensions.
See below.