Skip to content

Commit 02268b4

Browse files
committed
version bump
1 parent b697575 commit 02268b4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/mas/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.1"
1+
__version__ = "0.3.2"

src/mas/agent.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@
33
from __future__ import annotations
44

55
import asyncio
6+
import hashlib
7+
import hmac
68
import json
79
import logging
10+
import os
11+
import time
812
import uuid
913
from dataclasses import dataclass
1014
from types import FunctionType
1115
from typing import (
16+
TYPE_CHECKING,
1217
Any,
1318
Awaitable,
1419
Callable,
1520
Generic,
1621
Mapping,
1722
MutableMapping,
1823
Optional,
19-
TYPE_CHECKING,
2024
cast,
2125
)
2226

2327
from pydantic import BaseModel
2428

25-
from .registry import AgentRegistry, AgentRecord
26-
from .state import StateManager, StateType
2729
from .protocol import EnvelopeMessage, MessageMeta
2830
from .redis_client import create_redis_client
2931
from .redis_types import AsyncRedisProtocol, PubSubProtocol
30-
import os
31-
import time
32-
import hmac
33-
import hashlib
32+
from .registry import AgentRecord, AgentRegistry
33+
from .state import StateManager, StateType
3434

3535
if TYPE_CHECKING:
3636
from .gateway import GatewayService

0 commit comments

Comments
 (0)