From a6d210bf5470672660971ac08425cd5f41c19d67 Mon Sep 17 00:00:00 2001 From: Cedric Paillet Date: Thu, 9 Jan 2025 11:37:10 +0100 Subject: [PATCH] Bump CHANGELOG.md --- CHANGELOG.md | 5 +++++ consul/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07c771d..395528b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change log +## 1.5.4 + +- **feature:** Improve robustness of JSON decoding +- **feature:** Add support for honoring additional arguments in consul.Consul() + ## 1.5.3 - **feature:** add replace_existing_checks option to agent.service.register() diff --git a/consul/__init__.py b/consul/__init__.py index cbe2f38..503c693 100644 --- a/consul/__init__.py +++ b/consul/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.5.3" +__version__ = "1.5.4" from consul.check import Check from consul.exceptions import ACLDisabled, ACLPermissionDenied, ConsulException, NotFound, Timeout