diff --git a/docs/conf.py b/docs/conf.py index 665535ad2..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.1' +release = '3.76.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index d16d3d0d4..e89ad9563 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,21 @@ # Changelog +# Version 3.76.0 (2024-07-29) +# Added +* Added Project get_labeling_service(), request_labeling_service() and get_labeling_service_status() +* Added project and ontology creation for prompt response projects: Client create_prompt_response_generation_project(), create_response_creation_project() in https://github.com/Labelbox/labelbox-python/pull/1726 +* Added is_benchmark_enabled, is_consensus_enabled to Project in https://github.com/Labelbox/labelbox-python/pull/1745 + +## Updated +* Made Project quality modes a list to allow combining more than 1 quality mode per project in https://github.com/Labelbox/labelbox-python/pull/1683 + +## Notebooks +* Added back in export migration guide in https://github.com/Labelbox/labelbox-python/pull/1736 +* Added correct data param to video notebookin https://github.com/Labelbox/labelbox-python/pull/1732 +NOTE: the notebooks will be removed and moved to this repo https://github.com/Labelbox/labelbox-notebooks soon + +## Other +* Use connection pool for all http and graphql requests in https://github.com/Labelbox/labelbox-python/pull/1733 + # Version 3.75.1 (2024-07-16) ## Removed * Project MEDIA_TYPE JSON https://github.com/Labelbox/labelbox-python/pull/1728 diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index b3d7fe2f2..1a4c274da 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "3.75.1" +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 b1f477c6c..59ff67cf0 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.75.1" +__version__ = "3.76.0" from labelbox.client import Client from labelbox.schema.project import Project