Skip to content
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
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release History
===============

2.14.3 (2025-07-10)
---------------------
- Fix passing embed_object_url for async client

2.14.2 (2025-04-01)
---------------------
- Replace cgi to email.message module
Expand Down
2 changes: 1 addition & 1 deletion cybsi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.14.2"
__version__ = "2.14.3"
__title__ = "cybsi-python-sdk"
__description__ = "Cybersecurity threat intelligence development kit"
__license__ = "Apache License 2.0"
Expand Down
1 change: 1 addition & 0 deletions cybsi/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ def __init__(self, config: Config):
base_url=config.api_url,
auth=config.auth,
ssl_verify=config.ssl_verify,
embed_object_url=config.embed_object_url,
timeouts=config.timeouts,
limits=config.limits,
)
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The documentation files live in the ``docs/`` directory. Docs are written in
`reStructuredText`_, and use `Sphinx`_ to generate the full suite of
documentation.

.. _reStructuredText: http://docutils.sourceforge.net/rst.html
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
.. _Sphinx: http://sphinx-doc.org

Documentation tools update
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cybsi-sdk"
version = "2.14.2"
version = "2.14.3"
description = "Cybsi development kit"
authors = ["Cybsi SDK developers"]
license = "Apache License 2.0"
Expand Down Expand Up @@ -42,7 +42,7 @@ extend_skip = ["__init__.py"]
[tool.tbump]

[tool.tbump.version]
current = "2.14.2"
current = "2.14.3"

regex = '''
^
Expand Down