diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c7c4c2..9e6d520 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 0.6.27 +### Breaking changes + - 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 diff --git a/halfapi/__init__.py b/halfapi/__init__.py index a0fc107..2ecedc7 100644 --- a/halfapi/__init__.py +++ b/halfapi/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -__version__ = '0.6.27rc0' +__version__ = '0.6.27' def version(): return f'HalfAPI version:{__version__}'