Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

Commit

Permalink
Merge tag '0.4' into develop
Browse files Browse the repository at this point in the history
0.4 (2016-7-20)
---------------

This release introduces the django contrib module to enable filtering with lifter's python backend
on a django queryset, effectively reducing number of queries sent to the database.

Work is also in progress regarding caching (see #39) but this is not over yet.
  • Loading branch information
Eliot Berriot committed Jul 20, 2016
2 parents 53bf680 + 0a388be commit 570d3d4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======

0.4 (2016-7-20)
---------------

This release introduces the django contrib module to enable filtering with lifter's python backend
on a django queryset, effectively reducing number of queries sent to the database.

Work is also in progress regarding caching (see #39) but this is not over yet.

0.3 (2016-7-12)
---------------

Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ What is lifter?
:target: https://travis-ci.org/EliotBerriot/lifter


Lifter is a lightweight query engine, inspired by Django ORM and SQLAlchemy.
Lifter is a generic query engine, inspired by Django ORM and SQLAlchemy.

Its goal is to provide a unique interface to query any type of data, regardless of the underlying query language or data backend (SQL, REST, Python objects...).

Expand All @@ -30,7 +30,6 @@ Useful links:
Features
--------

* Operates on plain objects or mapping (such as dictionaries)
* Queryset API similar to Django_ and SQLAlchemy_
* Lazy querysets
* Composable queries
Expand Down
2 changes: 1 addition & 1 deletion lifter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Eliot Berriot'
__email__ = '[email protected]'
__version__ = '0.3'
__version__ = '0.4'

0 comments on commit 570d3d4

Please sign in to comment.