From a46b045ca66294f14a968576d80fbd346bd8fc44 Mon Sep 17 00:00:00 2001 From: maxime Date: Thu, 23 Jun 2022 07:24:05 +0200 Subject: [PATCH] [release] 0.6.16 --- CHANGELOG.md | 7 +++++++ halfapi/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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__}'