diff --git a/docs/releases.md b/docs/releases.md index cb652a7..3f9de29 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -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 diff --git a/ormar/__init__.py b/ormar/__init__.py index 26e0f5a..88421df 100644 --- a/ormar/__init__.py +++ b/ormar/__init__.py @@ -76,7 +76,7 @@ class UndefinedType: # pragma no cover Undefined = UndefinedType() -__version__ = "0.10.10" +__version__ = "0.10.11" __all__ = [ "Integer", "BigInteger",