diff --git a/CHANGELOG.md b/CHANGELOG.md index a32f594..a2a83ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,6 +85,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed dependency conflict with simple-ddl-generator: relaxed `table-meta` constraint to `>=0.1.5` (issue #46) - Fixed `iterate_over_the_list()` modifying list during iteration - Fixed meaningless condition in dataclass generator - Fixed incorrect column type crash (PR #63) diff --git a/pyproject.toml b/pyproject.toml index 4a8e20e..3bfe32e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ simple-ddl-parser = "^1.0.0" Jinja2 = "^3.0.1" py-models-parser = "^1.0.0" pydantic = ">=1.8.2,<3.0.0" -table-meta = "^0.1.5" +table-meta = ">=0.1.5" [tool.poetry.dev-dependencies] pytest = "^7.4"