diff --git a/docs/conf.py b/docs/conf.py index e25ae8a9c..b1d142a46 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '3.77.1' +release = '3.78.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index ef7568f64..424cb9bab 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,15 @@ # Changelog +# Version 3.78.0 (2024-09-03) +## Added +* Project get_labeling_service_dashboard() aka project detail (Miltiple PRs) +* Client get_labeling_service_dashboards() aka project list (Miltiple PRs) +* Client get_task_by_id()([#1767](https://github.com/Labelbox/labelbox-python/pull/1767)) +* Support for MMC tasks annotations([#1787](https://github.com/Labelbox/labelbox-python/pull/1787)) +## Updated +* Labeling service improve error reporting([#1769](https://github.com/Labelbox/labelbox-python/pull/1769)) +## Fixed +* Build a test-pypi sdk instance even if tests fail([#1774](https://github.com/Labelbox/labelbox-python/pull/1774)) + # Version 3.77.1 (2024-08-28) ## Fixed * Restore client.headers([#1781](https://github.com/Labelbox/labelbox-python/pull/1781)) diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 35865e6f5..29676e4f8 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "3.77.1" +version = "3.78.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 37bfe2e80..1c71c41f2 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.77.1" +__version__ = "3.78.0" from labelbox.client import Client from labelbox.schema.project import Project