Skip to content

Commit cd94b0c

Browse files
committed
release: v2.0.3 - final version sync and export fix
1 parent 03ced0a commit cd94b0c

3 files changed

Lines changed: 10 additions & 20 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The SDK now actively blocks Python `NaN` and `Infinity` values from being serial
3131

3232
---
3333

34-
## What's New in SDK v2.0.0?
34+
## What's New in SDK v2.0.3?
3535

3636
The V2.0 architecture has been rewritten for production stability:
3737
* **Resilient Transport:** Built-in connection pooling and full-jitter retry backoff.

intent_bus/__init__.py

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,14 @@
11
from .client.sync import IntentClient, ClaimResponse
22
from .worker.runtime import WorkerRuntime
3-
from .exceptions import (
4-
IntentBusError,
5-
IntentBusAuthError,
6-
IntentBusProtocolError,
7-
IntentBusRateLimitError,
8-
IntentBusNetworkError
9-
)
10-
from .constants import SERVER_API_VERSION
3+
from .models.intent import ClaimedIntent, IntentStatus, IntentResult
114
from .version import __version__
125

136
__all__ = [
14-
'IntentClient',
15-
'WorkerRuntime',
16-
'ClaimResponse',
17-
'IntentBusError',
18-
'IntentBusAuthError',
19-
'IntentBusProtocolError',
20-
'IntentBusRateLimitError',
21-
'IntentBusNetworkError',
22-
'SERVER_API_VERSION',
23-
'__version__'
7+
"IntentClient",
8+
"ClaimResponse",
9+
"WorkerRuntime",
10+
"ClaimedIntent",
11+
"IntentStatus",
12+
"IntentResult",
13+
"__version__",
2414
]

intent_bus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.2'
1+
__version__ = '2.0.3'

0 commit comments

Comments
 (0)