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: 2 additions & 2 deletions docs/manual/building_your_first_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
4 changes: 2 additions & 2 deletions docs/manual/integration_structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`).

Expand Down
Loading