From 906b95cfef4903e2d6247abf0fdd72f7da21617a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tin=20Tvrtkovi=C4=87?= Date: Sun, 2 Oct 2022 19:27:50 +0200 Subject: [PATCH] Reorder HISTORY --- HISTORY.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9b23bbb1..30f14738 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,16 +3,16 @@ History ======= 22.2.0 (UNRELEASED) ------------------- -* Python 3.11 support. -* ``cattrs.Converter`` has been renamed to ``cattrs.BaseConverter``, and ``cattrs.GenConverter`` to ``cattrs.Converter``. +* *Potentially breaking*: ``cattrs.Converter`` has been renamed to ``cattrs.BaseConverter``, and ``cattrs.GenConverter`` to ``cattrs.Converter``. The ``GenConverter`` name is still available for backwards compatibility, but is deprecated. If you were depending on functionality specific to the old ``Converter``, change your import to ``from cattrs import BaseConverter``. -* cattrs now supports un/structuring ``kw_only`` fields on attrs classes into/from dictionaries. - (`#247 `_) * `NewTypes `_ are now supported by the ``cattrs.Converter``. (`#255 `_, `#94 `_, `#297 `_) * ``cattrs.Converter`` and ``cattrs.BaseConverter`` can now copy themselves using the ``copy`` method. (`#284 `_) +* Python 3.11 support. +* cattrs now supports un/structuring ``kw_only`` fields on attrs classes into/from dictionaries. + (`#247 `_) * PyPy support (and tests, using a minimal Hypothesis profile) restored. (`#253 `_) * Fix propagating the `detailed_validation` flag to mapping and counter structuring generators.