From 868f7e95064b50f6593263a57681533978c99f97 Mon Sep 17 00:00:00 2001 From: facelessuser Date: Tue, 21 Jan 2025 07:44:17 -0700 Subject: [PATCH] Update versioning to reflect next release --- docs/src/markdown/about/changelog.md | 5 +---- pymdownx/__meta__.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/src/markdown/about/changelog.md b/docs/src/markdown/about/changelog.md index 7da14ee09..31f5c0678 100644 --- a/docs/src/markdown/about/changelog.md +++ b/docs/src/markdown/about/changelog.md @@ -1,12 +1,9 @@ # Changelog -## 10.14.2 - -- **FIX**: FancyLists: Fix case were lists could be falsely created when a line started with `.` or `)`. - ## 10.14.1 - **FIX**: MagicLink: Ensure that repo names that start with `.` are handled correctly. +- **FIX**: FancyLists: Fix case were lists could be falsely created when a line started with `.` or `)`. ## 10.14 diff --git a/pymdownx/__meta__.py b/pymdownx/__meta__.py index 3f8d22539..6fbcfb922 100644 --- a/pymdownx/__meta__.py +++ b/pymdownx/__meta__.py @@ -185,5 +185,5 @@ def parse_version(ver, pre=False): return Version(major, minor, micro, release, pre, post, dev) -__version_info__ = Version(10, 14, 2, "final") +__version_info__ = Version(10, 14, 1, "final") __version__ = __version_info__._get_canonical()