diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ec95e1..8188179 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
 # Change Log
 
+## 0.3.0 - 2021-12-03
+
+- ⬆️ UPGRADE: Compatible with markdown-it-py `v2`.
+- ✨ NEW: Add field list plugin, Based on the [restructuredtext syntax](https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#field-lists)
+- ♻️ REFACTOR: dollarmath plugin, `math_block_eqno` -> `math_block_label` token
+- ♻️ REFACTOR: Remove AttrDict usage from texmath
+- 👌 IMPROVE: Default HTML rendering for dollarmath and amsmath plugins
+- 👌 IMPROVE: Add render options for dollarmath and amsmath plugins
+- 👌 IMPROVE: MyST parsing of target blocks (allow whitespace) and roles (allow for new lines)
+
 ## 0.2.8 - 2021-05-03
 
 🐛 FIX: `wordcount` update of minutes
diff --git a/mdit_py_plugins/__init__.py b/mdit_py_plugins/__init__.py
index c49a95c..493f741 100644
--- a/mdit_py_plugins/__init__.py
+++ b/mdit_py_plugins/__init__.py
@@ -1 +1 @@
-__version__ = "0.2.8"
+__version__ = "0.3.0"
diff --git a/setup.cfg b/setup.cfg
index 79eeabd..843ad94 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -29,7 +29,7 @@ project_urls =
 [options]
 packages = find:
 install_requires =
-    markdown-it-py~=1.0
+    markdown-it-py>=1.0.0,<3.0.0
 python_requires = ~=3.6
 include_package_data = True
 zip_safe = True
@@ -48,7 +48,7 @@ testing =
     pytest-cov
     pytest-regressions
 rtd =
-    myst-parser==0.14.0a3
+    myst-parser~=0.14.0
     sphinx-book-theme~=0.1.0
 
 [mypy]