Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.17.0 release #61

Merged
merged 1 commit into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 9 additions & 1 deletion docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
^^^^^^^
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
readme = "docs/README.rst"
Expand Down
Loading