From c6a4f332f9fcca95e1401aaeda3fbb84764f4fa2 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Sun, 12 May 2024 22:11:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20v0.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ mdit_py_plugins/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b71e5e0..130aa0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.4.1 - 2024-05-12 + +* 👌 Add option for footnotes references to always be matched + + Usually footnote references are only matched when a footnote definition of the same label has already been found. If `always_match_refs=True`, any `[^...]` syntax will be treated as a footnote. + ## 0.4.0 - 2023-06-05 * ⬆️ UPGRADE: Drop python 3.7 and support 3.11 ([#77](https://github.com/executablebooks/mdit-py-plugins/pull/77)) diff --git a/mdit_py_plugins/__init__.py b/mdit_py_plugins/__init__.py index 6a9beea..3d26edf 100644 --- a/mdit_py_plugins/__init__.py +++ b/mdit_py_plugins/__init__.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.4.1"