Finished Release v2.1.2

This commit is contained in:
Kobi Tal 2022-07-19 11:10:47 +03:00
commit 09aeddf677
3 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,10 @@
Change Log Change Log
========== ==========
v2.1.2
------
- Add `QuerySet.model` to support django-rest-framework 3
v2.1.1 v2.1.1
------ ------
- Improve support of ClickHouse v21.9 (mangototango) - Improve support of ClickHouse v21.9 (mangototango)

View File

@ -30,7 +30,7 @@ homepage = https://github.com/Infinidat/infi.clickhouse_orm
[isolated-python] [isolated-python]
recipe = infi.recipe.python recipe = infi.recipe.python
version = v3.8.0.2 version = v3.8.12
[setup.py] [setup.py]
recipe = infi.recipe.template.version recipe = infi.recipe.template.version

View File

@ -292,6 +292,7 @@ class QuerySet(object):
Initializer. It is possible to create a queryset like this, but the standard Initializer. It is possible to create a queryset like this, but the standard
way is to use `MyModel.objects_in(database)`. way is to use `MyModel.objects_in(database)`.
""" """
self.model = model_cls
self._model_cls = model_cls self._model_cls = model_cls
self._database = database self._database = database
self._order_by = [] self._order_by = []