diff --git a/CHANGES b/CHANGES index 493f07d92..af65002c6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,21 @@ pydal changelog =============== +Version 15.09 +------------- + +Released on September 28th 2015 + +- [MongoDB] Implemented `orderby_on_limitby` +- [MongoDB] Implemented `distinct` for count +- [MongoDB] Implemented `select()` with `having` parameter +- [MongoDB] Implemented coalesce operations +- Virtual fields are now ordered depending on definition +- Allow usage of custom `Row` classes +- Added `.where` method to `Set` and `DAL` +- Several bugfixes + + Version 15.07 ------------- diff --git a/pydal/__init__.py b/pydal/__init__.py index 5914a445e..3003028be 100644 --- a/pydal/__init__.py +++ b/pydal/__init__.py @@ -1,4 +1,4 @@ -__version__ = '15.08.dev0' +__version__ = '15.09' from .base import DAL from .objects import Field