From bdc0a56348d34a82163f99f5ce270521269ab6e8 Mon Sep 17 00:00:00 2001 From: Kai Koenig Date: Mon, 13 Apr 2026 15:35:17 +1200 Subject: [PATCH] docs: update SDK version references from ~=1.1.1 to ~=2.0.0 --- docs/manual/building_your_first_integration.md | 4 ++-- docs/manual/integration_structure.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manual/building_your_first_integration.md b/docs/manual/building_your_first_integration.md index 753d8b8..2b62682 100644 --- a/docs/manual/building_your_first_integration.md +++ b/docs/manual/building_your_first_integration.md @@ -44,10 +44,10 @@ cd my-integration Create a `requirements.txt`: ``` -autohive-integrations-sdk~=1.1.1 +autohive-integrations-sdk~=2.0.0 ``` -The `~=` (compatible release) operator means `>=1.1.1, <1.2.0` — you'll get patch updates with bug fixes, but won't be surprised by minor version changes that could alter SDK behaviour. +The `~=` (compatible release) operator means `>=2.0.0, <2.1.0` — you'll get patch updates with bug fixes, but won't be surprised by minor version changes that could alter SDK behaviour. Add any additional libraries your integration needs beyond the SDK (e.g., `feedparser` for RSS parsing, `stripe` for the Stripe client library). diff --git a/docs/manual/integration_structure.md b/docs/manual/integration_structure.md index 6e4e2e2..7a55cb3 100644 --- a/docs/manual/integration_structure.md +++ b/docs/manual/integration_structure.md @@ -78,10 +78,10 @@ In this pattern: Must include the SDK with a compatible release pin: ``` -autohive-integrations-sdk~=1.1.1 +autohive-integrations-sdk~=2.0.0 ``` -The `~=` operator means `>=1.1.1, <1.2.0` — you get patch updates but not minor version changes. +The `~=` operator means `>=2.0.0, <2.1.0` — you get patch updates but not minor version changes. Add any additional libraries your integration needs (e.g., `feedparser`, `stripe`).