From 9b27ef187d80c32066172335f91fc9cda7505f2c Mon Sep 17 00:00:00 2001 From: collerek Date: Tue, 8 Jun 2021 14:39:03 +0200 Subject: [PATCH] add release notes --- docs/releases.md | 6 +++++- ormar/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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",