From 3112fdcfc82fe95145ffff76b645edbb68dd91cb Mon Sep 17 00:00:00 2001 From: Ricardo Date: Mon, 11 Sep 2023 13:15:28 +0200 Subject: [PATCH] Bug fix on Service Discoverer, a comma was missed on security token method --- HISTORY.rst | 6 ++++++ evolved5g/sdk.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c6eba56..d0bf5fa 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ ======= History ======= + +------------------- +1.0.10 (2023-09-11) +------------------- +* Bug fix: On Service Discoverer class, missed a comma on security token method. + ------------------- 1.0.9 (2023-09-05) ------------------- diff --git a/evolved5g/sdk.py b/evolved5g/sdk.py index efc2ecd..dbae3f0 100644 --- a/evolved5g/sdk.py +++ b/evolved5g/sdk.py @@ -1632,7 +1632,7 @@ def __get_security_token(self, api_name, aef_id): """ url = "https://{}:{}/capif-security/v1/securities/{}/token".format(self.capif_host, - self.capif_https_port + self.capif_https_port, self.capif_api_details["api_invoker_id"]) payload = { diff --git a/setup.cfg b/setup.cfg index b17a7f2..496a317 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.9 +current_version = 1.0.10 commit = True tag = True diff --git a/setup.py b/setup.py index 1826644..edf6642 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/EVOLVED-5G/SDK-CLI", - version="1.0.9", + version="1.0.10", zip_safe=False, )