diff --git a/HISTORY.md b/HISTORY.md index 7dc06e49..c4809882 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,9 +1,13 @@ # erdantic Changelog -## v0.7.0 (2024-02-11) +## v0.7.1 (2024-04-09) This will be the last version that supports Python 3.7. +- Added version typer version ceiling of `< 0.10.0` due to incompatibility with a fix introduced in that version. + +## v0.7.0 (2024-02-11) + - Added support for Pydantic V1 legacy models. These are models created from the `pydantic.v1` namespace when Pydantic V2 is installed. ([PR #94](https://github.com/drivendataorg/erdantic/pull/94) from [@ursereg](https://github.com/ursereg)) ## v0.6.0 (2023-07-09) diff --git a/pyproject.toml b/pyproject.toml index 6ffe5960..791b53fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "pydantic >= 2", "pydantic-core", "pygraphviz", - "typer", + "typer < 0.10.0", "typing_extensions > 4 ; python_version < '3.8'", ]