diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 865dd910..52731d73 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -22,13 +22,13 @@ Backward-incompatible changes: Changes: ^^^^^^^^ -- Allow the case of initializing attributes that are set to ``init=False``. - This allows for clean initializer parameter lists while being able to initialize attributes to default values. - `#32 `_ - ``__slots__`` have arrived! Classes now can automatically be `slots `_-style (and save your precious memory) just by passing ``slots=True``. `#35 `_ -- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``s when provided with a ``dict_factory`` argument. +- Allow the case of initializing attributes that are set to ``init=False``. + This allows for clean initializer parameter lists while being able to initialize attributes to default values. + `#32 `_ +- ``attr.asdict`` can now produce arbitrary mappings instead of Python ``dict``\ s when provided with a ``dict_factory`` argument. `#40 `_ - Multiple performance improvements.