Skip to content

Commit 5bca68d

Browse files
committed
Bump version to 0.42.0
1 parent c52a0c4 commit 5bca68d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/viam/robot/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
from viam.resource.registry import Registry
5353
from viam.resource.rpc_client_base import ReconfigurableResourceRPCClientBase, ResourceRPCClientBase
5454
from viam.resource.types import API, RESOURCE_TYPE_COMPONENT, RESOURCE_TYPE_SERVICE
55-
from viam.rpc.dial import DialOptions, ViamChannel, dial, _dial_inner
55+
from viam.rpc.dial import DialOptions, ViamChannel, _dial_inner, dial
5656
from viam.services.service_base import ServiceBase
5757
from viam.sessions_client import SessionsClient
5858
from viam.utils import datetime_to_timestamp, dict_to_struct

src/viam/rpc/dial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ async def dial(address: str, options: Optional[DialOptions] = None) -> ViamChann
308308
attempt_countdown -= 1
309309
# the only way we could get here is if we failed at least once which means we've set the
310310
# exception, so typechecker concerns about a possibly unbounded variable are unfounded
311-
raise exception # type: ignore
311+
raise exception # type: ignore
312312

313313

314314
async def _dial_inner(address: str, options: Optional[DialOptions] = None) -> ViamChannel:

src/viam/version_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.41.1"
1+
__version__ = "0.42.0"
22

33
API_VERSION = "v0.1.395"
44
SDK_VERSION = __version__

0 commit comments

Comments
 (0)