diff --git a/docs/conf.py b/docs/conf.py index b862846c8..e75dd28f5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '3.75.0' +release = '3.76.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index b5607639f..75d45532d 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +# Version 3.76.0 (2024-07-16) +## Remove +* Project MEDIA_TYPE JSON + # Version 3.75.0 (2024-07-10) ## Added * Added Project set_project_model_setup_complete() method by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 245402bca..52960819b 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "3.75.0" +version = "3.76.0" description = "Labelbox Python API" authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }] dependencies = [ diff --git a/libs/labelbox/src/labelbox/__init__.py b/libs/labelbox/src/labelbox/__init__.py index ff40e9e3c..4aea5924d 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.75.0" +__version__ = "3.76.0" from labelbox.client import Client from labelbox.schema.project import Project