Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #155

Merged
merged 2 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion evolved5g/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.9
current_version = 1.0.10
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Loading