Skip to content

Commit 9549be4

Browse files
v7.6.0 (#2050)
Co-authored-by: Matthew Roberson <mroberson@labelbox.com>
1 parent 23528c7 commit 9549be4

6 files changed

Lines changed: 18 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
@@ -43,6 +43,7 @@ Labelbox Python SDK Documentation
4343
pagination
4444
project
4545
project-model-config
46+
project-sync
4647
prompt-issue-tool
4748
quality-mode
4849
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
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+
* Add CRUD support for `Issues`, `Comments` and `Issue Categories` ([#2043](https://github.com/Labelbox/labelbox-python/pull/2043))
7+
## Fixed
8+
* Fix NDJSON serialization for `VideoClassificationAnnotation` with `Text` values ([#2044](https://github.com/Labelbox/labelbox-python/pull/2044))
9+
210
# Version 7.5.0 (2026-01-30)
311
## Added
412
* 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)