diff --git a/CHANGELOG.md b/CHANGELOG.md index b7567a0..5c7c4c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # HalfAPI +## 0.6.27 + +- ACLs definition can now include a "public" parameter that defines if there should be an automatic creation of a route to check this acls +- /halfapi/acls does not return the "result", it just returns if there is a public route to check the ACL on /halfapi/acls/acl_name + ## 0.6.26 - Adds the "base_url", "cookies" and "url" to the "halfapi" argument of route definitions diff --git a/halfapi/__init__.py b/halfapi/__init__.py index 1fd0291..a0fc107 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.26rc0' +__version__ = '0.6.27rc0' def version(): return f'HalfAPI version:{__version__}'