From 3fe29be22d26457f193aae88591d0a3a7d124f47 Mon Sep 17 00:00:00 2001 From: Christoph Lenggenhager Date: Thu, 28 Mar 2024 14:29:54 +0100 Subject: [PATCH] Bump API version check to v8.2 --- README.md | 2 +- .../airlock_gateway_rest_api_lib.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 01527c5..860ac82 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Ergon/Airlock does not provide support for it. Best effort support may be provided by the contributor of the library. The current version of this library has been developed for hosts running -Airlock Gateway 8.1, some REST calls will not work for hosts running different +Airlock Gateway 8.2, some REST calls will not work for hosts running different versions of Airlock Gateway. A full documentation of this library is available at [Airlock's GitHub Page](https://airlock.github.io/airlock-gateway-rest-api-lib-py). diff --git a/src/airlock_gateway_rest_api_lib/airlock_gateway_rest_api_lib.py b/src/airlock_gateway_rest_api_lib/airlock_gateway_rest_api_lib.py index ae0f058..d1ca0e9 100755 --- a/src/airlock_gateway_rest_api_lib/airlock_gateway_rest_api_lib.py +++ b/src/airlock_gateway_rest_api_lib/airlock_gateway_rest_api_lib.py @@ -36,7 +36,7 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) -LIBRARY_COMPATIBILITY_VERSION = '8.1' +LIBRARY_COMPATIBILITY_VERSION = '8.2' class AirlockGatewayRestError(Exception):