Skip to content

Commit d87c86e

Browse files
committed
Prep 7.7.0
Made-with: Cursor
1 parent 9e3a274 commit d87c86e

6 files changed

Lines changed: 19 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.6.0'
19+
release = '7.7.0'
2020

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

docs/labelbox/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Labelbox Python SDK Documentation
5454
slice
5555
step-reasoning-tool
5656
task
57+
task-assignment-status
5758
task-queue
5859
user
5960
user-group-v2
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
TaskAssignmentStatus
2+
====================
3+
4+
.. autoclass:: labelbox.schema.task_assignment_status.TaskAssignmentStatus
5+
:members:
6+
:undoc-members:
7+
: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.7.0 (2026-04-29)
3+
## Added
4+
* Add `Project.bulk_assign_data_rows()` method for bulk assigning data rows to a user ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
5+
* Add `TaskAssignmentStatus` enum for filtering assignable data row statuses ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
6+
## Fixed
7+
* Reorder `create_api_key` validation to check input params before making API calls ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
8+
* Fix mypy type error in `DataRowUpsertItem.build` ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
9+
210
# Version 7.6.0 (2026-03-18)
311
## Added
412
* Add `Project.sync_external_project()` method for syncing external labels, metrics, and workflow state ([#2042](https://github.com/Labelbox/labelbox-python/pull/2042))

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.6.0"
3+
version = "7.7.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.6.0"
3+
__version__ = "7.7.0"
44

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

0 commit comments

Comments
 (0)