Skip to content

Commit

Permalink
Update HISTORY.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
rnag committed Nov 23, 2024
1 parent 5e2fb76 commit 3595cf2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
History
=======

0.29.0 (2024-11-23)
-------------------

**Features and Improvements**

- *Nested JSON Mapping* (:issue:`60`): Map nested JSON keys to dataclass fields using helper functions :func:`KeyPath` or :func:`json_field`.
- *Catch-All Keys* (:issue:`57`): Save unknown JSON keys with ease.
- *Cleaner Codebase*: Remove comments and type annotations for Python files with ``.pyi`` counterparts.
- *Enhanced Debugging*: ``debug_enabled`` now supports ``bool | int | str``, allowing flexible logging levels.
- *Documentation Updates*: Improved and expanded docs!

0.28.0 (2024-11-15)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion dataclass_wizard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
For full documentation and more advanced usage, please see
<https://dataclass-wizard.readthedocs.io>.
:copyright: (c) 2021 by Ritvik Nag.
:copyright: (c) 2021-2025 by Ritvik Nag.
:license: Apache 2.0, see LICENSE for more details.
"""

Expand Down
3 changes: 0 additions & 3 deletions dataclass_wizard/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
# Check if currently running Python 3.11 or higher
PY311_OR_ABOVE = _PY_VERSION >= (3, 11)

# Check if currently running Python 3.12 or higher
PY312_OR_ABOVE = _PY_VERSION >= (3, 12)

# Check if currently running Python 3.13 or higher
PY313_OR_ABOVE = _PY_VERSION >= (3, 13)

Expand Down
2 changes: 1 addition & 1 deletion dataclass_wizard/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import Generic, Mapping, NewType

from .bases import META
from .constants import PY310_OR_ABOVE, PY312_OR_ABOVE
from .constants import PY310_OR_ABOVE
from .decorators import cached_property
from .type_def import T, DT, PyTypedDict
# noinspection PyProtectedMember
Expand Down

0 comments on commit 3595cf2

Please sign in to comment.