Skip to content

Commit 5f34b15

Browse files
docs: update SDK version references from ~=1.1.1 to ~=2.0.0 (#34)
1 parent 297e84d commit 5f34b15

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/manual/building_your_first_integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ cd my-integration
4444
Create a `requirements.txt`:
4545

4646
```
47-
autohive-integrations-sdk~=1.1.1
47+
autohive-integrations-sdk~=2.0.0
4848
```
4949

50-
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.
50+
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.
5151

5252
Add any additional libraries your integration needs beyond the SDK (e.g., `feedparser` for RSS parsing, `stripe` for the Stripe client library).
5353

docs/manual/integration_structure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ In this pattern:
7878
Must include the SDK with a compatible release pin:
7979

8080
```
81-
autohive-integrations-sdk~=1.1.1
81+
autohive-integrations-sdk~=2.0.0
8282
```
8383

84-
The `~=` operator means `>=1.1.1, <1.2.0` — you get patch updates but not minor version changes.
84+
The `~=` operator means `>=2.0.0, <2.1.0` — you get patch updates but not minor version changes.
8585

8686
Add any additional libraries your integration needs (e.g., `feedparser`, `stripe`).
8787

0 commit comments

Comments
 (0)