diff --git a/CHANGES b/CHANGES index cd93b17de..f56af092f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,18 @@ -pydal changelog +pyDAL changelog =============== +Version 17.07 +------------- + +Released on July 4th 2017 + +- Various bugfixes +- Field.set_attributes now returns the instance +- [PostgreSQL] Added jsonb type and serialization/parsing support +- Added unix socket support in MySQL and PostgreSQL adapters +- [GCP] Added MySQL and PostgreSQL support + + Version 17.03 ------------- diff --git a/pydal/__init__.py b/pydal/__init__.py index fdd1ed099..8ca9843c4 100644 --- a/pydal/__init__.py +++ b/pydal/__init__.py @@ -1,4 +1,4 @@ -__version__ = '17.03' +__version__ = '17.07' from .base import DAL from .objects import Field