From 960b585e78b0a34ca8bf01233cf25a7ae1c44d18 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sun, 15 Sep 2024 22:01:22 +0300 Subject: [PATCH] docs: update the change log --- CHANGES.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index e69f730df..8f7bbb1b2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -15,6 +15,10 @@ Added - Prevent Pylint from updating beyond version 3.2.7 due to dropped Python 3.8 support. - The ``--formatter=black`` option (the default) has been added in preparation for future formatters. +- Invoking Black is now implemented as a plugin. This allows for easier integration of + other formatters in the future. There's also a dummy ``none`` formatter plugin. +- ``--formatter=none`` now skips running Black. This is useful when you only want to run + Isort or Flynt. Removed -------