add release notes

This commit is contained in:
collerek
2021-06-08 14:39:03 +02:00
parent 96c9615229
commit 9b27ef187d
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,11 @@
## ✨ Features
*
* Add `values` and `values_list` to `QuerySet` and `QuerysetProxy` that allows to return raw data from query [#223](https://github.com/collerek/ormar/issues/223).
* Allow returning list of tuples or list of dictionaries from a query
* Skips parsing the data to ormar model so skips also the validation
* Allow excluding models in between in chain of relations, so you can extract only needed columns
* `values_list` allows you to flatten the result if you extract only one column.
## 🐛 Fixes

View File

@ -76,7 +76,7 @@ class UndefinedType: # pragma no cover
Undefined = UndefinedType()
__version__ = "0.10.10"
__version__ = "0.10.11"
__all__ = [
"Integer",
"BigInteger",