diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bcd36d..d9e7400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -79,6 +79,10 @@ The standard configuration precedence is fixed, in this order from the hight to Small cleanup of the logs levels. If you don't want the config to be dumped, just set the HALFAPI_LOGLEVEL to something different than "DEBUG". +### Fixes + +- Check an ACL based on a decorator on "/halfapi/acls/MY_ACL" + ## 0.6.27 ### Breaking changes diff --git a/halfapi/__init__.py b/halfapi/__init__.py index c6d4199..9d573cb 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.28rc4' +__version__ = '0.6.28rc5' def version(): return f'HalfAPI version:{__version__}'