diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6604397..3df876c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +**v0.15.1** +## Updates +1. Foreign Key processing updates - https://github.com/xnuinside/omymodels/pull/55 +2. Move to simple-ddl-parser version 1.X + **v0.14.0** ## Updates diff --git a/README.md b/README.md index 83fbd79..c68c9a4 100644 --- a/README.md +++ b/README.md @@ -307,6 +307,11 @@ If you see any bugs or have any suggestions - feel free to open the issue. Any h One more time, big 'thank you!' goes to https://github.com/archongum for Web-version: https://archon-omymodels-online.hf.space/ ## Changelog +**v0.15.1** +## Updates +1. Foreign Key processing updates - https://github.com/xnuinside/omymodels/pull/55 +2. Move to simple-ddl-parser version 1.X + **v0.14.0** ## Updates diff --git a/docs/README.rst b/docs/README.rst index 58e0499..eb8d6e4 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -330,6 +330,15 @@ One more time, big 'thank you!' goes to https://github.com/archongum for Web-ver Changelog --------- +**v0.15.1** + +Updates +------- + + +#. Foreign Key processing updates - https://github.com/xnuinside/omymodels/pull/55 +#. Move to simple-ddl-parser version 1.X + **v0.14.0** Updates diff --git a/pyproject.toml b/pyproject.toml index 5d8400d..41f559f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "omymodels" -version = "0.14.0" +version = "0.15.1" description = "O! My Models (omymodels) is a library to generate Python Models for SQLAlchemy (ORM & Core), GinoORM, Pydantic, Pydal tables & Python Dataclasses from SQL DDL. And convert one models to another." authors = ["Iuliia Volkova "] license = "MIT" @@ -33,11 +33,13 @@ table-meta = "^0.1.5" [tool.poetry.dev-dependencies] pytest = "^7.4" m2r = "^0.3.1" -twine = "^4.0" [tool.poetry.scripts] omm = 'omymodels.cli:main' +[tool.poetry.group.dev.dependencies] +twine = "^4.0.2" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/tests/functional/generator/test_sqlalchemy.py b/tests/functional/generator/test_sqlalchemy.py index 95dc0c4..118d332 100644 --- a/tests/functional/generator/test_sqlalchemy.py +++ b/tests/functional/generator/test_sqlalchemy.py @@ -356,5 +356,4 @@ class Table2(Base): ("reference_to_table_in_another_schema") REFERENCES "schema2"."table2" ("id"); """ result = create_models(ddl, schema_global=False, models_type="sqlalchemy")["code"] - print(result) assert result == expected