Skip to content
Merged
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.6.0'
release = '7.7.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 @@ -54,6 +54,7 @@ Labelbox Python SDK Documentation
slice
step-reasoning-tool
task
task-assignment-status
task-queue
user
user-group-v2
Expand Down
7 changes: 7 additions & 0 deletions docs/labelbox/task-assignment-status.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
TaskAssignmentStatus
====================

.. autoclass:: labelbox.schema.task_assignment_status.TaskAssignmentStatus
:members:
:undoc-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.7.0 (2026-04-29)
## Added
* Add `Project.bulk_assign_data_rows()` method for bulk assigning data rows to a user ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
* Add `TaskAssignmentStatus` enum for filtering assignable data row statuses ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
## Fixed
* Reorder `create_api_key` validation to check input params before making API calls ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))
* Fix mypy type error in `DataRowUpsertItem.build` ([#2054](https://github.com/Labelbox/labelbox-python/pull/2054))

# 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))
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.6.0"
version = "7.7.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.6.0"
__version__ = "7.7.0"

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