14
0

- update to 0.21.1:

* Allow to specify __match_args__.
  * Add @as_record adapter for def-style decalarations of
    dataclasses that are considered as just a struct.
  * The option fast_new will be removed in 0.22. It will be
    always as fast_new=True by creation.
  * Fix issues with `_PyUnicodeWriter`  for python 3.13.
  * Add __match_args__ to support match protocol for dataobject-based subclasses.
  Make to compile, to build and to test successfully for python 3.11.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-recordclass?expand=0&rev=7
This commit is contained in:
2023-12-29 09:36:21 +00:00
committed by Git OBS Bridge
parent 1fe6883176
commit a362b9bf43
4 changed files with 19 additions and 8 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Dec 29 09:35:17 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.21.1:
* Allow to specify __match_args__.
* Add @as_record adapter for def-style decalarations of
dataclasses that are considered as just a struct.
* The option fast_new will be removed in 0.22. It will be
always as fast_new=True by creation.
* Fix issues with `_PyUnicodeWriter` for python 3.13.
-------------------------------------------------------------------
Wed Nov 9 18:53:20 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
@@ -10,13 +21,13 @@ Wed Nov 9 18:53:20 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
* Fix issue for argument with default value in __new__, which havn't __repr__ that can be interpreted as valid python expression for creation of the default value.
* Add support for typing.ClassVar.
* Add Py_TPFLAGS_SEQUENCE and Py_TPFLAGS_MAPPING.
* Add __match_args__ to support match protocol for dataobject-based subclasses.
* Add __match_args__ to support match protocol for dataobject-based subclasses.
-------------------------------------------------------------------
Fri Oct 7 03:49:55 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- 0.17.5
Make to compile, to build and to test successfully for python 3.11.
Make to compile, to build and to test successfully for python 3.11.
-------------------------------------------------------------------
Sun Jul 31 21:55:59 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>