diff --git a/README.md b/README.md index 9af291d..f5f9447 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It relies exclusively on the API, which means output of the methods are the same as specified in the API reference. ## Versions -The Python client version follows the API versions (until the patch level). Meaning for API v2.0.0, one need to install `dfir_iris_client-2.0.0`. +The Python client version follows the API versions (until the patch level). Meaning for API v2.0.1, one need to install `dfir_iris_client-2.0.1`. Please refer to the [documentation](https://dfir-iris.github.io/operations/api/#references) to check which version applies to your IRIS instance. ## Install diff --git a/dfir_iris_client/session.py b/dfir_iris_client/session.py index e523b60..f62f1b1 100644 --- a/dfir_iris_client/session.py +++ b/dfir_iris_client/session.py @@ -36,6 +36,7 @@ """ API_VERSION = "2.0.1" + """client_session Defines a global session, accessible by all classes. client_session is of type ClientSession. """ diff --git a/setup.py b/setup.py index e6a6a2c..fd1ef97 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setuptools.setup( name='dfir_iris_client', - version='2.0.0', + version='2.0.1', packages=['dfir_iris_client', 'dfir_iris_client.helper', 'dfir_iris_client.tests'], author="DFIR-IRIS", author_email="contact@dfir-iris.org",