From cd82def32ec8b0fb3820aaea307ccbedd0a56d9a Mon Sep 17 00:00:00 2001 From: "Laurent Mignon (ACSONE)" Date: Thu, 27 Jul 2023 10:11:39 +0200 Subject: [PATCH] 0.0.6 --- .bumpversion.cfg | 2 +- HISTORY.rst | 13 +++++++++++++ news/3.bugfix | 1 - news/pydanticv1.feature | 1 - pyproject.toml | 1 + src/extendable_pydantic/version.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 HISTORY.rst delete mode 100644 news/3.bugfix delete mode 100644 news/pydanticv1.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8fc0dac..463d257 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.5 +current_version = 0.0.6 [bumpversion:file:.bumpversion.cfg] diff --git a/HISTORY.rst b/HISTORY.rst new file mode 100644 index 0000000..99cdfd2 --- /dev/null +++ b/HISTORY.rst @@ -0,0 +1,13 @@ +0.0.6 (2023-07-27) +================== + +Features +-------- + +- Adapts dependencies to support pydantic V1 by pinning "pydantic<2.0". (`#12 `_) + + +Bugfixes +-------- + +- Pervent 'ModuleNotFoundError' when used on Odoo.sh (`#3 `_) diff --git a/news/3.bugfix b/news/3.bugfix deleted file mode 100644 index b20861b..0000000 --- a/news/3.bugfix +++ /dev/null @@ -1 +0,0 @@ -Pervent 'ModuleNotFoundError' when used on Odoo.sh diff --git a/news/pydanticv1.feature b/news/pydanticv1.feature deleted file mode 100644 index ffd7d15..0000000 --- a/news/pydanticv1.feature +++ /dev/null @@ -1 +0,0 @@ -Adapts dependencies to support pydantic V1 by pinning "pydantic<2.0". diff --git a/pyproject.toml b/pyproject.toml index 03b69a9..684d0b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,6 +83,7 @@ ignore = [ "tests/test_forward_refs.py" = ["F821"] [tool.towncrier] +name = "Extendable Pydantic" package = "extendable_pydantic" package_dir = "src" filename = "HISTORY.rst" diff --git a/src/extendable_pydantic/version.py b/src/extendable_pydantic/version.py index b1a19e3..034f46c 100644 --- a/src/extendable_pydantic/version.py +++ b/src/extendable_pydantic/version.py @@ -1 +1 @@ -__version__ = "0.0.5" +__version__ = "0.0.6"