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.1.1'
release = '7.1.2'

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

Expand Down
7 changes: 6 additions & 1 deletion libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Changelog
# Version 7.1.2 (2025-08-14)
## Fixed
* Project Setup: Remove project setup complete restriction ([#2003](https://github.com/Labelbox/labelbox-python/pull/2002))
* API key creation: fix support of role with a space in the name ([#2003](https://github.com/Labelbox/labelbox-python/pull/2003))
* Workflow cloning: Fix validation for some nodes ([#2005](https://github.com/Labelbox/labelbox-python/pull/2005))

# Version 7.1.1 (2025-07-09)
## Fixed
* `reset_to_initial_nodes()` and `clone_workflow_from()` will not update initial node IDs anymore ([#1999](https://github.com/Labelbox/labelbox-python/pull/1999))


# Version 7.1.0 (2025-07-08)
## Added
* Add the ability to specify relationship constraints ([#1992](https://github.com/Labelbox/labelbox-python/pull/1992))
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.1.1"
version = "7.1.2"
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.1.1"
__version__ = "7.1.2"

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