From e651a6af0bc5b2ad98dab7be7befed90ad1e31cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 5 May 2020 13:05:18 +0200 Subject: [PATCH] :bookmark: Release version 0.0.3 --- README.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f1f1e21..dd49e36 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,8 @@ def test_pydantic_sqlalchemy(): ### Latest Changes +### 0.0.3 + * Add support for `exclude` to exclude columns from Pydantic model. PR [#3](https://github.com/tiangolo/pydantic-sqlalchemy/pull/3). * Add support for overriding the Pydantic `config`. PR [#1](https://github.com/tiangolo/pydantic-sqlalchemy/pull/1) by [@pyropy](https://github.com/pyropy). * Add CI with GitHub Actions. PR [#2](https://github.com/tiangolo/pydantic-sqlalchemy/pull/2). diff --git a/pyproject.toml b/pyproject.toml index 03526ad..9ecc977 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydantic-sqlalchemy" -version = "0.0.2" +version = "0.0.3" description = "Tools to convert SQLAlchemy models to Pydantic models" authors = ["Sebastián Ramírez "] license = "MIT"