diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e43fed4..a0dbe4d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.2.1 [bumpversion:file:.bumpversion.cfg] diff --git a/HISTORY.rst b/HISTORY.rst index 1a71a56..d5fcf86 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,15 @@ +1.2.1 (2023-11-13) +================== + +Bugfixes +-------- + +- From Pydantic 2.5.0 the FieldInfo class is no more available in the pydantic.main + module. It's only available in the pydantic.fields module. The import from the + pydantic.main module was a mistake since it relied on an transitive import from + pydantic.fields to pydantic.main. This is no more the case in Pydantic 2.5.0. (`#18 `_) + + 1.2.0 (2023-10-11) ================== diff --git a/news/18.bugfix b/news/18.bugfix deleted file mode 100644 index 671ee06..0000000 --- a/news/18.bugfix +++ /dev/null @@ -1,4 +0,0 @@ -From Pydantic 2.5.0 the FieldInfo class is no more available in the pydantic.main -module. It's only available in the pydantic.fields module. The import from the -pydantic.main module was a mistake since it relied on an transitive import from -pydantic.fields to pydantic.main. This is no more the case in Pydantic 2.5.0. diff --git a/src/extendable_pydantic/version.py b/src/extendable_pydantic/version.py index c68196d..a955fda 100644 --- a/src/extendable_pydantic/version.py +++ b/src/extendable_pydantic/version.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.2.1"