From e7174e321c317f70cff879a7b73856ff09b35daf Mon Sep 17 00:00:00 2001 From: collerek Date: Thu, 6 Jan 2022 19:57:09 +0100 Subject: [PATCH] bump version, update release info --- docs/index.md | 8 +++++++- docs/releases.md | 8 ++++++++ pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 7621fc1..9ecee7d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -61,6 +61,12 @@ As of now `ormar` is supported by: * [`fastapi-crudrouter`](https://github.com/awtkns/fastapi-crudrouter) * [`fastapi-pagination`](https://github.com/uriyyo/fastapi-pagination) +Ormar remains sql dialect agnostic - so only columns working in all supported backends are implemented. + +It's relatively easy to implement columns for specific dialects as an extensions of ormar. + +Postgres specific columns implementation: [`ormar-postgres-extensions`](https://github.com/tophat/ormar-postgres-extensions) + If you maintain or use a different library and would like it to support `ormar` let us know how we can help. ### Dependencies @@ -74,7 +80,7 @@ Ormar is built with: ### License -`ormar` is built as open-sorce software and will remain completely free (MIT license). +`ormar` is built as open-source software and will remain completely free (MIT license). As I write open-source code to solve everyday problems in my work or to promote and build strong python community you can say thank you and buy me a coffee or sponsor me with a monthly amount to help ensure my work remains free and maintained. diff --git a/docs/releases.md b/docs/releases.md index f85243c..62d0926 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,3 +1,11 @@ +# 0.10.24 + +## 🐛 Fixes + +* Fix support for `pydantic==1.9.0` [#502](https://github.com/collerek/ormar/issues/502) +* Fix timezone issues with datetime [#504](https://github.com/collerek/ormar/issues/504) +* Remove literal binds in query generation to unblock postgres arrays [#/tophat/ormar-postgres-extensions/9](https://github.com/tophat/ormar-postgres-extensions/pull/9) + # 0.10.23 ## ✨ Features diff --git a/pyproject.toml b/pyproject.toml index e45ebf8..2f8e195 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "ormar" [tool.poetry] name = "ormar" -version = "0.10.23" +version = "0.10.24" description = "A simple async ORM with fastapi in mind and pydantic validation." authors = ["Radosław Drążkiewicz "] license = "MIT"