diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a5410808..de612cc14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +# Version 3.41.0 (2023-03-15) + +## Added +* New data classes for creating labels: `AudioData`, `ConversationData`, `DicomData`, `DocumentData`, `HTMLData` +* New `DocumentEntity` annotation type class +* New parameter `last_activity_end` to `Project.export_labels()` + +## Notebooks +* Updated `annotation_import/pdf.ipynb` with example use of `DocumentEntity` class + # Version 3.40.1 (2023-03-10) ## Fixed diff --git a/docs/source/conf.py b/docs/source/conf.py index 1ba1cbeff..599608c09 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.40.1' +release = '3.41.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index d428a6c9e..18565fec8 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,5 +1,5 @@ name = "labelbox" -__version__ = "3.40.1" +__version__ = "3.41.0" from labelbox.client import Client from labelbox.schema.project import Project