diff --git a/CHANGES b/CHANGES index 1d659b315..3335ddefc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,16 @@ pydal changelog =============== +Version 16.06.09 +---------------- + +Released on June 9th 2016 + +- Fixed boolean parsing errors on Postgre introduced with 16.06 +- Fixed connection issues on multiprocessing environments with pre-fork +- Added 'postgres3' adapter to use driver 'boolean' type on fields + + Version 16.06 ------------- diff --git a/pydal/__init__.py b/pydal/__init__.py index 965000a88..a1ec73b62 100644 --- a/pydal/__init__.py +++ b/pydal/__init__.py @@ -1,4 +1,4 @@ -__version__ = '16.07-dev' +__version__ = '16.06.09' from .base import DAL from .objects import Field