From 4ad913387fff3cf8aebb40c22121805214090186 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Fri, 14 Oct 2022 15:07:32 -0700 Subject: [PATCH] Prep 3.28.0 release --- CHANGELOG.md | 13 +++++++++++-- docs/source/conf.py | 2 +- labelbox/__init__.py | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf435ffc..e9393c9ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,18 @@ # Changelog -# Version 0.0.0 (YYYY-MM-DD) - In Progress +# Version 3.28.0 (2022-10-14) + +### Added +* Added warning for upcoming change in default project queue_mode setting +* Added notebook example for importing Conversational Text annotations using Model-Assisted Labeling ### Changed -* Update QueueMode enum to support new value for QueueMode.Batch = `BATCH`. +* Updated QueueMode enum to support new value for QueueMode.Batch = `BATCH`. +* Task.failed_data_rows is now a property + +### Fixed +* Fixed Task.wait_till_done() showing warning message for every completed task, instead of only warning when task has errors +* Fixed error on dataset creation step in examples/annotation_import/video.ipynb notebook # Version 3.27.2 (2022-10-04) diff --git a/docs/source/conf.py b/docs/source/conf.py index af76b4056..cf39046da 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.27.2' +release = '3.28.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index 3d7cc5f1f..d6a2b8359 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,5 +1,5 @@ name = "labelbox" -__version__ = "3.27.2" +__version__ = "3.28.0" from labelbox.client import Client from labelbox.schema.project import Project