diff --git a/CHANGES b/CHANGES index 4f4759cb1..1d659b315 100644 --- a/CHANGES +++ b/CHANGES @@ -1,16 +1,15 @@ pydal changelog =============== -Next ----- +Version 16.06 +------------- -(Release date to be announced) +Released on June 6th 2016 - Major refactoring of the codebase - Improved Postgre adapter performance - [MSSQL] Fixed sql generation with `orderby` on MSSQL3 adapters - Connection and cursors are now thread safe -- Removed `_lastsql` attribute in adapters - [Mongo] Empty values for `ObjectId` fields are now stored and parsed as `None` instead of a fake `ObjectId(0)` - Fixed multiple calls of initialization callbacks during connection diff --git a/pydal/__init__.py b/pydal/__init__.py index 909408834..d792fcd83 100644 --- a/pydal/__init__.py +++ b/pydal/__init__.py @@ -1,4 +1,4 @@ -__version__ = '16.04-dev' +__version__ = '16.06' from .base import DAL from .objects import Field