From df4f341cec480aaf5eccd5197c713944005410c2 Mon Sep 17 00:00:00 2001 From: pavel Date: Thu, 23 May 2024 17:55:27 +0300 Subject: [PATCH] increment library version --- README.md | 6 +++--- docs/common/installation.rst | 6 +++--- docs/overview.rst | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fbbff31d..25c7902c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
- - + + adaptix logo @@ -25,7 +25,7 @@ An extremely flexible and configurable data model conversion library. Install ```bash -pip install adaptix==3.0.0b5 +pip install adaptix==3.0.0b6 ``` Use for model loading and dumping. diff --git a/docs/common/installation.rst b/docs/common/installation.rst index 57cd2d63..4d0a4b37 100644 --- a/docs/common/installation.rst +++ b/docs/common/installation.rst @@ -2,7 +2,7 @@ Just use pip to install the library .. code-block:: text - pip install adaptix==3.0.0b5 + pip install adaptix==3.0.0b6 Integrations with 3-rd party libraries are turned on automatically, @@ -20,5 +20,5 @@ So, this is valid installation variants: .. code-block:: text - pip install adaptix[attrs-strict]==3.0.0b5 - pip install adaptix[attrs, sqlalchemy-strict]==3.0.0b5 + pip install adaptix[attrs-strict]==3.0.0b6 + pip install adaptix[attrs, sqlalchemy-strict]==3.0.0b6 diff --git a/docs/overview.rst b/docs/overview.rst index c6544296..c7c48db2 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -16,7 +16,7 @@ Installation .. code-block:: text - pip install adaptix==3.0.0b5 + pip install adaptix==3.0.0b6 Example diff --git a/pyproject.toml b/pyproject.toml index 968291f5..528af6a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'adaptix' -version = '3.0.0b5' +version = '3.0.0b6' description = 'An extremely flexible and configurable data model conversion library' readme = 'README.md' requires-python = '>=3.8'