diff --git a/CHANGELOG.md b/CHANGELOG.md index 424948ad2..750e985c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +# Version 3.47.0 (2023-05-23) +## Added +* Support for interpolated frames to export v2 + +## Changed +* Removed ndjson library and replaced it with a custom ndjson parser + +## Notebooks +* Removed confidence scores in annotations - video notebook +* Removed raster seg masks from video prediction +* Added export v2 example +* Added SAM and Labelbox connector notebook + # Version 3.46.0 (2023-05-03) ## Added * Global key support to DataRow Metadata `bulk_upsert()` function diff --git a/docs/source/conf.py b/docs/source/conf.py index cc7178123..e768fc955 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.46.0' +release = '3.47.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index 109aada5c..36d747ad7 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,5 +1,5 @@ name = "labelbox" -__version__ = "3.46.0" +__version__ = "3.47.0" from backports.datetime_fromisoformat import MonkeyPatch