diff --git a/CHANGELOG.md b/CHANGELOG.md index 17fb8f562..49969ccc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog +# Version 3.51.0 (2023-08-14) +## Added +* Added global keys to export v2 filters for project, dataset and DataRow +* Added workflow task status filtering for export v2 + + ## Notebooks +* Removed labels notebook, since almost all of the relevant methods in the notebook were not compatible with workflow paradigm. +* Updated project.ipynb to use batches not datasets + # Version 3.50.0 (2023-08-04) ## Added * Support batch_ids filter for projects in Exports v2 diff --git a/docs/source/conf.py b/docs/source/conf.py index 07643bf87..af3413148 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.50.0' +release = '3.51.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index 824c44bf3..1dba57cf5 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,5 +1,5 @@ name = "labelbox" -__version__ = "3.50.0" +__version__ = "3.51.0" from labelbox.client import Client from labelbox.schema.project import Project