From a816432228f7dd4af5bc14f06ce0e70ae462db3b Mon Sep 17 00:00:00 2001 From: Iuliia Volkova Date: Sun, 12 May 2024 15:14:47 +0300 Subject: [PATCH] set version to 0.17.0 --- CHANGELOG.txt | 7 ++++++- README.md | 7 ++++++- docs/README.rst | 10 +++++++++- pyproject.toml | 4 ++-- 4 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 46423de..3a97014 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,10 +1,15 @@ -**v0.16.0** +**v0.17.0** ### Updates 1. fix character varying type - https://github.com/xnuinside/omymodels/issues/59 2. sqlalchemy import removed from generation in sqlmodels if it is not used 3. = Field() - is not placed in SQLModel if there is no defaults or other settings to the field +**v0.16.0** + +### Updates +1. Initial SQLModel Support + **v0.15.1** ## Updates diff --git a/README.md b/README.md index 53bd511..6301797 100644 --- a/README.md +++ b/README.md @@ -307,13 +307,18 @@ 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.16.0** +**v0.17.0** ### Updates 1. fix character varying type - https://github.com/xnuinside/omymodels/issues/59 2. sqlalchemy import removed from generation in sqlmodels if it is not used 3. = Field() - is not placed in SQLModel if there is no defaults or other settings to the field +**v0.16.0** + +### Updates +1. Initial SQLModel Support + **v0.15.1** ## Updates diff --git a/docs/README.rst b/docs/README.rst index b26a1f1..550308b 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -330,7 +330,7 @@ One more time, big 'thank you!' goes to https://github.com/archongum for Web-ver Changelog --------- -**v0.16.0** +**v0.17.0** Updates ^^^^^^^ @@ -340,6 +340,14 @@ Updates #. sqlalchemy import removed from generation in sqlmodels if it is not used #. = Field() - is not placed in SQLModel if there is no defaults or other settings to the field +**v0.16.0** + +Updates +^^^^^^^ + + +#. Initial SQLModel Support + **v0.15.1** Updates diff --git a/pyproject.toml b/pyproject.toml index ed6403e..9156c86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "omymodels" -version = "0.16.0" -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." +version = "0.17.0" +description = "O! My Models (omymodels) is a library to generate Python Models for SQLAlchemy (ORM & Core), SQLModel, GinoORM, Pydantic, Pydal tables & Python Dataclasses from SQL DDL. And convert one models to another." authors = ["Iuliia Volkova "] license = "MIT" readme = "docs/README.rst"