diff --git a/docs/conf.py b/docs/conf.py index f575b502c..a80a3608d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '3.71.0' +release = '3.72.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index d0fd432a6..97e5c99fc 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog +# Version 3.72.0 (2024-06-04) +## Added +* Update Dataset `create_data_rows` to allow upload of unlimited number of data rows [PR #1627](https://github.com/Labelbox/labelbox-python/pull/1627), [PR #1648](https://github.com/Labelbox/labelbox-python/pull/1648) +* New Dataset methods for iam_integraton: `add_iam_integration`, `remove_iam_integration` [PR #1622](https://github.com/Labelbox/labelbox-python/pull/1622) + +## Notebooks +* Added model evaluation SDK method notebook [PR #1645](https://github.com/Labelbox/labelbox-python/pull/1645) +* Added quick start notebook geared towards new users [PR #1640](https://github.com/Labelbox/labelbox-python/pull/1640) + # Version 3.71.0 (2024-05-28) ## Added * `project.get_overview()` to be able to retrieve project details (#1615) diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 62a3de5f3..58e57ef0b 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "3.71.0" +version = "3.72.0" description = "Labelbox Python API" authors = [ { name = "Labelbox", email = "engineering@labelbox.com" } diff --git a/libs/labelbox/src/labelbox/__init__.py b/libs/labelbox/src/labelbox/__init__.py index 41366b2fc..6499173fd 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.71.0" +__version__ = "3.72.0" from labelbox.client import Client from labelbox.schema.project import Project