bump version, update release info
This commit is contained in:
@ -61,6 +61,12 @@ As of now `ormar` is supported by:
|
|||||||
* [`fastapi-crudrouter`](https://github.com/awtkns/fastapi-crudrouter)
|
* [`fastapi-crudrouter`](https://github.com/awtkns/fastapi-crudrouter)
|
||||||
* [`fastapi-pagination`](https://github.com/uriyyo/fastapi-pagination)
|
* [`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.
|
If you maintain or use a different library and would like it to support `ormar` let us know how we can help.
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
@ -74,7 +80,7 @@ Ormar is built with:
|
|||||||
|
|
||||||
### License
|
### 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
|
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.
|
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.
|
||||||
|
|||||||
@ -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
|
# 0.10.23
|
||||||
|
|
||||||
## ✨ Features
|
## ✨ Features
|
||||||
|
|||||||
@ -3,7 +3,7 @@ name = "ormar"
|
|||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "ormar"
|
name = "ormar"
|
||||||
version = "0.10.23"
|
version = "0.10.24"
|
||||||
description = "A simple async ORM with fastapi in mind and pydantic validation."
|
description = "A simple async ORM with fastapi in mind and pydantic validation."
|
||||||
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
|
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
Reference in New Issue
Block a user