Skip to content

Commit 42ed7d5

Browse files
Merge pull request #690 from Labelbox/kkim/changelog_3.27.0
[AL-0] Update changelog for 3.27.0
2 parents 3b375d4 + b13d4e5 commit 42ed7d5

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Changelog
22

3-
# Version 0.0.0 (YYYY-MM-DD) - In Progress
4-
3+
# Version 3.27.0 (2022-09-12)
54
### Added
65
* Global Keys for data rows
76
* Assign global keys to a data row with `client.assign_global_keys_to_data_rows`
87
* Get data rows using global keys with `client.get_data_row_ids_for_global_keys` and `client.get_data_rows_for_global_keys`
8+
* Project Creation
9+
* Introduces `Project.queue_mode` as an optional parameter when creating projects
10+
* `MEAToMALPredictionImport` class
11+
* This allows users to use predictions stored in Models for MAL
12+
### Changed
13+
* Increase scalar metric value limit to 100m
14+
* Added deprecation warnings when updating project `queue_mode`
15+
916
# Version 3.26.2 (2022-09-06)
1017
### Added
1118
* Support for document (pdf) de/serialization from exports

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.26.2'
24+
release = '3.27.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.26.2"
2+
__version__ = "3.27.0"
33

44
from labelbox.client import Client
55
from labelbox.schema.project import Project

tests/integration/annotation_import/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
from typing import Type
99
from labelbox.schema.labeling_frontend import LabelingFrontend
10-
from labelbox.schema.annotation_import import LabelImport, MALPredictionImport, AnnotationImportState
10+
from labelbox.schema.annotation_import import LabelImport, AnnotationImportState
11+
from labelbox.schema.queue_mode import QueueMode
1112

1213

1314
@pytest.fixture
@@ -164,7 +165,7 @@ def configured_project_without_data_rows(client, configured_project, rand_gen):
164165
client.get_labeling_frontends(
165166
where=LabelingFrontend.name == "editor"))[0]
166167
project.setup_editor(configured_project.ontology())
167-
project.update(queue_mode=project.QueueMode.Batch)
168+
project.update(queue_mode=QueueMode.Batch)
168169
yield project
169170
project.delete()
170171

0 commit comments

Comments
 (0)