Skip to content
Merged

v7.6.0 #2050

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = 'Python SDK reference'
copyright = '2025, Labelbox'
author = 'Labelbox'
release = '7.5.0'
release = '7.6.0'

# -- General configuration ---------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/labelbox/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Labelbox Python SDK Documentation
pagination
project
project-model-config
project-sync
prompt-issue-tool
quality-mode
request-client
Expand Down
6 changes: 6 additions & 0 deletions docs/labelbox/project-sync.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Project Sync
===============================================================================================

.. automodule:: labelbox.schema.project_sync
:members:
:show-inheritance:
8 changes: 8 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
# Version 7.6.0 (2026-03-18)
## Added
* Add `Project.sync_external_project()` method for syncing external labels, metrics, and workflow state ([#2042](https://github.com/Labelbox/labelbox-python/pull/2042))
* Add `ProjectSyncEntry`, `ProjectSyncResult`, `ProjectSyncLabel`, `ProjectSyncReview`, `AutoQA`, `AutoQaStatus`, `CustomScore`, `GranularRating`, `SubmittedBy`, `ReviewedBy` classes ([#2042](https://github.com/Labelbox/labelbox-python/pull/2042))
* Add CRUD support for `Issues`, `Comments` and `Issue Categories` ([#2043](https://github.com/Labelbox/labelbox-python/pull/2043))
## Fixed
* Fix NDJSON serialization for `VideoClassificationAnnotation` with `Text` values ([#2044](https://github.com/Labelbox/labelbox-python/pull/2044))

# Version 7.5.0 (2026-01-30)
## Added
* Add support for text subclasses under global text subclasses ([#2040](https://github.com/Labelbox/labelbox-python/pull/2040))
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "labelbox"
version = "7.5.0"
version = "7.6.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/src/labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "labelbox"

__version__ = "7.5.0"
__version__ = "7.6.0"

from labelbox.client import Client
from labelbox.schema.annotation_import import (
Expand Down
Loading