Skip to content

Commit 42d4456

Browse files
authored
prep 6.8.0 (#1954)
1 parent 30910f4 commit 42d4456

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

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 = '6.7.0'
19+
release = '6.8.0'
2020

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

libs/labelbox/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# Changelog
2+
Version 6.8.0 (2025-02-20)
3+
### Added Support for Source Ontology Names in Relationships
4+
5+
Added the ability to specify relationships using `source_ontology_name` instead of a concrete source annotation. This enhancement is particularly useful for PDF document annotations where you can create relationships referencing ontology classes directly.
6+
7+
Key changes:
8+
- Added optional `source_ontology_name` field to `Relationship` class
9+
- Made `source` field optional
10+
- Added validation to ensure either `source` or `source_ontology_name` is provided, but not both
11+
### Added search by name for `get_catalog_slice`
12+
### Added `get_catalog_slices` to get all slices
13+
214
# Version 6.7.0 (2025-02-06)
315
## Added
416
* MAL support for pdf relationships (beta)([#1932](https://github.com/Labelbox/labelbox-python/pull/1932))

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 = "6.7.0"
3+
version = "6.8.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "[email protected]" }]
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__ = "6.7.0"
3+
__version__ = "6.8.0"
44

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

0 commit comments

Comments
 (0)