From 54cc6c17c94b098a52b4f7efa5a6c47f2f042050 Mon Sep 17 00:00:00 2001 From: Maxime Alves LIRMM Date: Wed, 7 Jun 2023 11:46:53 +0200 Subject: [PATCH] [release] 0.6.27 --- CHANGELOG.md | 2 ++ halfapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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__}'