Skip to content

Commit 3b0ce2e

Browse files
committed
v7.6.0
1 parent 45fb47c commit 3b0ce2e

6 files changed

Lines changed: 15 additions & 3 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = 'Python SDK reference'
1717
copyright = '2025, Labelbox'
1818
author = 'Labelbox'
19-
release = '7.5.0'
19+
release = '7.6.0'
2020

2121
# -- General configuration ---------------------------------------------------
2222

docs/labelbox/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Labelbox Python SDK Documentation
4040
pagination
4141
project
4242
project-model-config
43+
project-sync
4344
prompt-issue-tool
4445
quality-mode
4546
request-client

docs/labelbox/project-sync.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Project Sync
2+
===============================================================================================
3+
4+
.. automodule:: labelbox.schema.project_sync
5+
:members:
6+
:show-inheritance:

libs/labelbox/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
# Version 7.6.0 (2026-03-18)
3+
## Added
4+
* Add `Project.sync_external_project()` method for syncing external labels, metrics, and workflow state ([#2042](https://github.com/Labelbox/labelbox-python/pull/2042))
5+
* Add `ProjectSyncEntry`, `ProjectSyncResult`, `ProjectSyncLabel`, `ProjectSyncReview`, `AutoQA`, `AutoQaStatus`, `CustomScore`, `GranularRating`, `SubmittedBy`, `ReviewedBy` classes ([#2042](https://github.com/Labelbox/labelbox-python/pull/2042))
6+
27
# Version 7.5.0 (2026-01-30)
38
## Added
49
* Add support for text subclasses under global text subclasses ([#2040](https://github.com/Labelbox/labelbox-python/pull/2040))

libs/labelbox/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "labelbox"
3-
version = "7.5.0"
3+
version = "7.6.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
66
dependencies = [

libs/labelbox/src/labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "labelbox"
22

3-
__version__ = "7.5.0"
3+
__version__ = "7.6.0"
44

55
from labelbox.client import Client
66
from labelbox.schema.annotation_import import (

0 commit comments

Comments
 (0)