From 32570c2f2d2b43cd17c27240204a978b76882cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Paillet?= Date: Thu, 23 May 2024 15:37:41 +0200 Subject: [PATCH] Release version 1.5.1 (#77) --- CHANGELOG.md | 5 +++++ consul/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c49df1..ed6fbdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log +## 1.5.1 + +- **feature:** Implement creation of policies. +- **feature:** Integrate policy addition during token creation. + ## 1.5.0 - **[Breaking]** ACL endpoint change, consul.acl is now consul.acl.token diff --git a/consul/__init__.py b/consul/__init__.py index 7af2bf9..6a284bc 100644 --- a/consul/__init__.py +++ b/consul/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.5.0" +__version__ = "1.5.1" from consul.check import Check from consul.exceptions import ACLDisabled, ACLPermissionDenied, ConsulException, NotFound, Timeout