Skip to content

Commit

Permalink
Add changelog and increment library version
Browse files Browse the repository at this point in the history
  • Loading branch information
zhPavel committed Dec 14, 2024
1 parent 0f293f5 commit ec5f344
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ An extremely flexible and configurable data model conversion library.

Install
```bash
pip install adaptix==3.0.0b8
pip install adaptix==3.0.0b9
```

Use for model loading and dumping.
Expand Down
37 changes: 37 additions & 0 deletions docs/changelog/changelog_body.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,43 @@
----------------------------------------------------


.. _v3.0.0b9:

`3.0.0b9 <https://github.com/reagento/adaptix/tree/v3.0.0b9>`__ -- 2024-12-15
=============================================================================

.. _v3.0.0b9-Features:

Features
--------

- Add support for all Python 3.13 new features.

.. _v3.0.0b9-Breaking Changes:

Breaking Changes
----------------

- All iterables now are dumped to tuple (or list for list children). `#348 <https://github.com/reagento/adaptix/issues/348>`__

.. _v3.0.0b9-Bug Fixes:

Bug Fixes
---------

- Fix ``NoRequiredFieldsLoadError`` raising for fields generated by name flattening.
- ``hide_traceback=False`` shows traceback now.

.. _v3.0.0b9-Other:

Other
-----

- Add "Why not Pydantic?" article.

----------------------------------------------------


.. _v3.0.0b8:

`3.0.0b8 <https://github.com/reagento/adaptix/tree/v3.0.0b8>`__ -- 2024-09-02
Expand Down
1 change: 0 additions & 1 deletion docs/changelog/fragments/+313.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/fragments/+hide_traceback.bugfix.rst

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/fragments/348.breaking.rst

This file was deleted.

6 changes: 3 additions & 3 deletions docs/common/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Just use pip to install the library

.. code-block:: text
pip install adaptix==3.0.0b8
pip install adaptix==3.0.0b9
Integrations with 3-rd party libraries are turned on automatically,
Expand All @@ -20,5 +20,5 @@ So, this is valid installation variants:

.. code-block:: text
pip install adaptix[attrs-strict]==3.0.0b8
pip install adaptix[attrs, sqlalchemy-strict]==3.0.0b8
pip install adaptix[attrs-strict]==3.0.0b9
pip install adaptix[attrs, sqlalchemy-strict]==3.0.0b9
2 changes: 1 addition & 1 deletion docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Installation

.. code-block:: text
pip install adaptix==3.0.0b8
pip install adaptix==3.0.0b9
Example
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'adaptix'
version = '3.0.0b8'
version = '3.0.0b9'
description = 'An extremely flexible and configurable data model conversion library'
readme = 'README.md'
requires-python = '>=3.9'
Expand Down

0 comments on commit ec5f344

Please sign in to comment.