bump version, update release info

This commit is contained in:
collerek
2022-01-06 19:57:09 +01:00
parent 646a901af5
commit e7174e321c
3 changed files with 16 additions and 2 deletions

View File

@ -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.

View File

@ -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