Skip to content

Commit 49e5fbd

Browse files
committed
Bump version to 0.57.0
1 parent 00779a4 commit 49e5fbd

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/viam/app/data_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
ListDatasetsByIDsResponse,
9797
ListDatasetsByOrganizationIDRequest,
9898
ListDatasetsByOrganizationIDResponse,
99-
RenameDatasetRequest,
10099
MergeDatasetsRequest,
101100
MergeDatasetsResponse,
101+
RenameDatasetRequest,
102102
)
103103
from viam.proto.app.datasync import (
104104
DataCaptureUploadMetadata,
@@ -1302,7 +1302,6 @@ async def create_dataset(self, name: str, organization_id: str) -> str:
13021302
response: CreateDatasetResponse = await self._dataset_client.CreateDataset(request, metadata=self._metadata)
13031303
return response.id
13041304

1305-
13061305
async def merge_datasets(self, name: str, organization_id: str, dataset_ids: List[str]) -> str:
13071306
"""Merge multiple datasets into a new dataset.
13081307

src/viam/version_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.56.0"
1+
__version__ = "0.57.0"
22

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

tests/test_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MERGED_NAME = "VIAM_DATASET_MERGED"
1212
ID = "VIAM_DATASET_1"
1313
ID2 = "VIAM_DATASET_2"
14-
MERGED_ID = f'{ID}{ID2}'
14+
MERGED_ID = f"{ID}{ID2}"
1515
NAME = "dataset"
1616
ORG_ID = "org_id"
1717
SECONDS = 978310861

0 commit comments

Comments
 (0)