diff --git a/CHANGELOG.md b/CHANGELOG.md index 84d1c2b..6c18987 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # HalfAPI +## 0.6.16 + +- The definition of "HALFAPI_DOMAIN_MODULE" environment variable allows to + specify the base module for a domain structure. It is formatted as a python + import path. + The "HALFAPI_DOMAIN" specifies the "name" of the module + ## 0.6.15 - Allows to define a "__acl__" variable in the API module's __init__.py, to diff --git a/halfapi/__init__.py b/halfapi/__init__.py index cdc43c2..80c65a8 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.15' +__version__ = '0.6.16' def version(): return f'HalfAPI version:{__version__}'