From 16c8825f2e9562449096964e76ecf4f1b2cfd97d Mon Sep 17 00:00:00 2001 From: jackdewinter Date: Mon, 1 Jul 2024 19:33:28 -0700 Subject: [PATCH] Version 0.9.21 (#1118) --- newdocs/src/changelog.md | 24 ++++++++++++++++++++++++ pymarkdown/version.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/newdocs/src/changelog.md b/newdocs/src/changelog.md index 43a81b668..3850db217 100644 --- a/newdocs/src/changelog.md +++ b/newdocs/src/changelog.md @@ -4,16 +4,40 @@ ### Added +- None + +### Fixed + +- None + +### Changed + +- None + +## Version 0.9.21 - Date: 2024-07-01 + +This release focuses on enabling the fix modes for various rules, +performing more testing of scenarios to prepare for the release. +Not finding anything major, but uncovering some "weird" combinations +that are causing unpredictable behavior. That behavior is mostly +in the area of producing the correct Markdown from tokens to allow +the fix mode to produce reliable fixes. + + +### Added + - [Issue 826](https://github.com/jackdewinter/pymarkdown/issues/826) - Added fix mode for Rule Md044 - [Issue 824](https://github.com/jackdewinter/pymarkdown/issues/824) - Added fix mode for Rule Md046 + ### Fixed - [Issue 1099](https://github.com/jackdewinter/pymarkdown/issues/1099) - Fixed longstanding issue with tabs and newlines in code spans + ### Changed - [Issue 1103](https://github.com/jackdewinter/pymarkdown/issues/1103) diff --git a/pymarkdown/version.py b/pymarkdown/version.py index 5873c2c3b..aa567522f 100644 --- a/pymarkdown/version.py +++ b/pymarkdown/version.py @@ -2,4 +2,4 @@ Library version information. """ -__version__: str = "0.9.20" +__version__: str = "0.9.21"